This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
scriptreplay_ng
mirror of
https://github.com/scoopex/scriptreplay_ng
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
1
Wiki
Activity
Browse Source
Bugfix: Pressing "c" while in pause doesn't resume playback.
pull/10/head
CykuTW
4 years ago
parent
99184c702d
commit
29b72dea94
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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; }
}
}
Write
Preview
Loading…
Cancel
Save