# HG changeset patch # User Ryan C. Gordon # Date 1124721511 0 # Node ID d581fe3f36dbada7a704a4f23fa5bbf8a703e918 # Parent a6011e1394d998cc85a008630f7f7363a80bb992 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. diff -r a6011e1394d9 -r d581fe3f36db src/cdrom/macosx/SDL_syscdrom.c --- a/src/cdrom/macosx/SDL_syscdrom.c Mon Aug 22 14:18:15 2005 +0000 +++ b/src/cdrom/macosx/SDL_syscdrom.c Mon Aug 22 14:38:31 2005 +0000 @@ -412,7 +412,7 @@ Lock (); - if (PauseFile () < 0) { + if (PlayFile () < 0) { Unlock (); return -2; }