Commit 3da700ed authored by Ryan C. Gordon's avatar Ryan C. Gordon

Fix for bug reported by Michael Benfield on the SDL mailing list:

"I'm on Mac OS 10.3.9 with a CVS SDL 1.2.9.

My understanding is that SDL_CDResume is supposed to resume play after
calling SDL_CDPlay. It doesn't on my system. It returns 0 but nothing happens.

Any ideas?

Thanks.

Mike Benfield"

--ryan.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401127
parent a3e073d8
......@@ -412,7 +412,7 @@ static int SDL_SYS_CDResume(SDL_CD *cdrom)
Lock ();
if (PauseFile () < 0) {
if (PlayFile () < 0) {
Unlock ();
return -2;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment