CDROM: Increase delay for pause-when-paused

Fixes lockup in Tama - Adventurous Ball in Giddy Labyrinth.
This commit is contained in:
Stenzek 2025-02-14 23:33:31 +10:00
parent 6f25cf31a7
commit 72ac4f94db
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -1680,7 +1680,7 @@ TickCount CDROM::GetTicksForSeek(CDImage::LBA new_lba, bool ignore_speed_change)
TickCount CDROM::GetTicksForPause()
{
if (!IsReadingOrPlaying())
return 7000;
return 27000;
if (g_settings.cdrom_read_speedup == 0 && CanUseReadSpeedup())
return System::ScaleTicksToOverclock(g_settings.cdrom_max_speedup_cycles);