diff options
author | Matthew Hoops | 2015-09-29 21:00:56 -0400 |
---|---|---|
committer | Johannes Schickel | 2016-03-13 13:52:24 +0100 |
commit | fb6fe1332aaa9ab4d0ec0ad4ee8015ce4076bd85 (patch) | |
tree | cc1284f92298cfd8307ba6985f4105bdce147324 /engines/gob | |
parent | d85eb8ded68a20de383d84064aacd1a4c81db4e9 (diff) | |
download | scummvm-rg350-fb6fe1332aaa9ab4d0ec0ad4ee8015ce4076bd85.tar.gz scummvm-rg350-fb6fe1332aaa9ab4d0ec0ad4ee8015ce4076bd85.tar.bz2 scummvm-rg350-fb6fe1332aaa9ab4d0ec0ad4ee8015ce4076bd85.zip |
BACKENDS: Move to an openCD() without parameters as the public API
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/gob.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 24bdb858d8..df2d804bd2 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -296,9 +296,7 @@ Common::Error GobEngine::run() { if (isCD()) checkCD(); - int cd_num = ConfMan.getInt("cdrom"); - if (cd_num >= 0) - _system->getAudioCDManager()->openCD(cd_num); + _system->getAudioCDManager()->openCD(); _global->_debugFlag = 1; _video->_doRangeClamp = true; |