Browse Source

Merge pull request #10 from CykuTW/bugfix/make_continue_key_works

Bugfix: Pressing "c" while in pause doesn't resume playback.
master
Marc Schöchlin 4 years ago
committed by GitHub
parent
commit
62737dc811
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scriptreplay

+ 1
- 1
scriptreplay View File

@ -137,7 +137,7 @@ sub main() {
$accel = 1 if $key =~ /=|n/i;
last REPLAY if $key =~ /q|f/i;
if ($key =~ /s|p/i) {
while (ReadKey(0) =~ /c/i) { next; }
while (ReadKey(0) !~ /c/i) { next; }
}
}


Loading…
Cancel
Save