From 2f532fc0d77355b86cdee565e5f1fa849e644f45 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2005 14:38:31 +0000 Subject: [PATCH] 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. --- src/cdrom/macosx/SDL_syscdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdrom/macosx/SDL_syscdrom.c b/src/cdrom/macosx/SDL_syscdrom.c index e1c1badd7..8ebf8fbae 100644 --- a/src/cdrom/macosx/SDL_syscdrom.c +++ b/src/cdrom/macosx/SDL_syscdrom.c @@ -412,7 +412,7 @@ static int SDL_SYS_CDResume(SDL_CD *cdrom) Lock (); - if (PauseFile () < 0) { + if (PlayFile () < 0) { Unlock (); return -2; }