SDL: Get rid of reference to SDL 1.3.
We only support SDL 1.2 and SDL 2.
This commit is contained in:
parent
90899860b4
commit
b32f347531
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue