POSIX: Cleanup AudioCD manager creation.

This commit is contained in:
Johannes Schickel 2016-03-13 14:20:20 +01:00
parent 8cd4b881e3
commit 5340df3faf
2 changed files with 4 additions and 6 deletions

View file

@ -243,12 +243,13 @@ bool OSystem_POSIX::displayLogFile() {
return WIFEXITED(status) && WEXITSTATUS(status) == 0;
}
#ifdef USE_LINUXCD
AudioCDManager *OSystem_POSIX::createAudioCDManager() {
#ifdef USE_LINUXCD
return createLinuxAudioCDManager();
#else
return OSystem_SDL::createAudioCDManager();
#endif
}
#endif
#endif