Browse Source

Added =/n keys to resume normal playback speed

Added =/n keys to resume normal playback speed
pull/1/head
Zeal Jagannatha 9 years ago
committed by GitHub
parent
commit
1dc9c9422d
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      scriptreplay

+ 5
- 0
scriptreplay View File

@ -134,6 +134,7 @@ sub main() {
$accel += 0.1 if $key =~ /-|d/i;
$accel -= 0.1 if $key =~ /\+|i/i && $accel > 0.11;
$accel = 1 if $key =~ /=|n/i;
last REPLAY if $key =~ /q|f/i;
if ($key =~ /s|p/i) {
while (ReadKey(0) =~ /c/i) { next; }
@ -251,6 +252,10 @@ files are: C<bz2>, C<gz>, C<lz> or C<lzma>.
=item *
"=" or "n" resumes normal display speed.
=item *
"s" or "p" pauses the playback; and "c" continues again.
=item *


Loading…
Cancel
Save