Browse Source

* Use enter as the transition key.

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
f20598339e
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      doc/cacafire.1
  2. +1
    -1
      src/cacademo.c

+ 1
- 1
doc/cacafire.1 View File

@@ -17,7 +17,7 @@ of concentric circles, old school plasma, Matrix-like scrolling.
displays burning ASCII art flames. displays burning ASCII art flames.
.SH KEYS .SH KEYS
.TP .TP
.B n
.B Enter
forces an effect transition to happen forces an effect transition to happen
.TP .TP
.B Space .B Space


+ 1
- 1
src/cacademo.c View File

@@ -113,7 +113,7 @@ int main(int argc, char **argv)
case ' ': case ' ':
pause = !pause; pause = !pause;
break; break;
case 'n':
case '\r':
if(next == -1) if(next == -1)
next_transition = frame; next_transition = frame;
break; break;


Loading…
Cancel
Save