From b32f347531cf9aa5b23db5ce875b5b7a295022bb Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 13 Mar 2016 14:07:10 +0100 Subject: SDL: Get rid of reference to SDL 1.3. We only support SDL 1.2 and SDL 2. --- backends/platform/sdl/sdl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/platform/sdl/sdl.cpp') diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index a110a9ff2f..c55753194b 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -484,8 +484,8 @@ Common::TimerManager *OSystem_SDL::getTimerManager() { } AudioCDManager *OSystem_SDL::createAudioCDManager() { - // Audio CD support was removed with SDL 1.3 -#if SDL_VERSION_ATLEAST(1, 3, 0) + // Audio CD support was removed with SDL 2.0 +#if SDL_VERSION_ATLEAST(2, 0, 0) return new DefaultAudioCDManager(); #else return new SdlAudioCDManager(); -- cgit v1.2.3