diff options
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r-- | engines/sci/console.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 72eceb05a0..3348ed4973 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -417,11 +417,11 @@ bool Console::cmdGetVersion(int argc, const char **argv) { DebugPrintf("\n"); DebugPrintf("Detected features:\n"); DebugPrintf("------------------\n"); - DebugPrintf("Sound type: %s\n", getSciVersionDesc(s->detectDoSoundType()).c_str()); - DebugPrintf("Graphics functions type: %s\n", getSciVersionDesc(s->detectGfxFunctionsType()).c_str()); - DebugPrintf("Lofs type: %s\n", getSciVersionDesc(s->detectLofsType()).c_str()); - DebugPrintf("Move count type: %s\n", (s->detectMoveCountType() == kIncrementMoveCount) ? "increment" : "ignore"); - DebugPrintf("SetCursor type: %s\n", getSciVersionDesc(s->detectSetCursorType()).c_str()); + DebugPrintf("Sound type: %s\n", getSciVersionDesc(s->_features->detectDoSoundType()).c_str()); + DebugPrintf("Graphics functions type: %s\n", getSciVersionDesc(s->_features->detectGfxFunctionsType()).c_str()); + DebugPrintf("Lofs type: %s\n", getSciVersionDesc(s->_features->detectLofsType()).c_str()); + DebugPrintf("Move count type: %s\n", (s->_features->detectMoveCountType() == kIncrementMoveCount) ? "increment" : "ignore"); + DebugPrintf("SetCursor type: %s\n", getSciVersionDesc(s->_features->detectSetCursorType()).c_str()); DebugPrintf("View type: %s\n", viewTypeDesc[s->resMan->getViewType()]); DebugPrintf("Resource volume version: %s\n", s->resMan->getVolVersionDesc()); DebugPrintf("Resource map version: %s\n", s->resMan->getMapVersionDesc()); @@ -1592,7 +1592,7 @@ bool Console::cmdIsSample(int argc, const char **argv) { return true; } - SoundResource *soundRes = new SoundResource(number, _engine->getResourceManager(), _engine->_gamestate->detectDoSoundType()); + SoundResource *soundRes = new SoundResource(number, _engine->getResourceManager(), _engine->_gamestate->_features->detectDoSoundType()); if (!soundRes) { DebugPrintf("Not a sound resource!\n"); |