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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
scriptreplay
|
|
|
@ -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; } |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|