Skip to content

Commit

Permalink
SDL: Get rid of reference to SDL 1.3.
Browse files Browse the repository at this point in the history
We only support SDL 1.2 and SDL 2.
  • Loading branch information
Johannes Schickel committed Mar 13, 2016
1 parent 9089986 commit b32f347
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/platform/sdl/sdl.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit b32f347

Please sign in to comment.