1
0
mirror of synced 2025-01-19 09:27:26 +01:00

Fix crash on the play option menu when scroll speed is >0.5 and <1.0

This commit is contained in:
0auBSQ 2023-06-30 22:26:02 +09:00
parent f4e8962e36
commit df27cbac9c

View File

@ -461,7 +461,7 @@ namespace TJAPlayer3
int speed = TJAPlayer3.ConfigIni.nScrollSpeed[actual];
if (speed <= 4)
if (speed <= 8)
nSpeedCount = 0;
else if (speed <= 19)
nSpeedCount = speed - 8;