mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
reset some CD related vars when AudioCD is opened
svn-id: r9144
This commit is contained in:
parent
2b0e1b7000
commit
dad1586daf
@ -915,6 +915,10 @@ uint32 OSystem_SDL_Common::property(int param, Property *value) {
|
||||
/* Did if open? Check if _cdrom is NULL */
|
||||
if (!_cdrom) {
|
||||
warning("Couldn't open drive: %s\n", SDL_GetError());
|
||||
} else {
|
||||
cd_num_loops = 0;
|
||||
cd_stop_time = 0;
|
||||
cd_end_time = 0;
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -1098,7 +1102,7 @@ void OSystem_SDL_Common::play_cdrom(int track, int num_loops, int start_frame, i
|
||||
return;
|
||||
|
||||
if (duration > 0)
|
||||
duration +=5;
|
||||
duration += 5;
|
||||
|
||||
cd_track = track;
|
||||
cd_num_loops = num_loops;
|
||||
|
Loading…
x
Reference in New Issue
Block a user