diff options
author | Christoph Mallon | 2012-03-13 10:06:00 +0100 |
---|---|---|
committer | Alyssa Milburn | 2012-03-13 15:43:23 +0100 |
commit | d21cef411721984d4c6cabc7df04cbab9b725978 (patch) | |
tree | 8110a0759a69e88bb3ce576ac5965bf0982f5ed7 /engines/mohawk | |
parent | bc238a5ff38c5cb0ed563a3c56ade155b511bbde (diff) | |
download | scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.gz scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.bz2 scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.zip |
JANITORIAL: Avoid the ugly operator invocation syntax.
Diffstat (limited to 'engines/mohawk')
-rw-r--r-- | engines/mohawk/myst_areas.cpp | 2 | ||||
-rw-r--r-- | engines/mohawk/myst_scripts.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/mohawk/myst_areas.cpp b/engines/mohawk/myst_areas.cpp index fe33ceaa9b..a54b67bef4 100644 --- a/engines/mohawk/myst_areas.cpp +++ b/engines/mohawk/myst_areas.cpp @@ -134,7 +134,7 @@ const Common::String MystResourceType5::describe() { desc += " ops:"; for (uint i = 0; i < _script->size(); i++) - desc += " " + _vm->_scriptParser->getOpcodeDesc(_script->operator[](i).opcode); + desc += " " + _vm->_scriptParser->getOpcodeDesc((*_script)[i].opcode); } return desc; diff --git a/engines/mohawk/myst_scripts.cpp b/engines/mohawk/myst_scripts.cpp index b9353312c7..107a8b03e9 100644 --- a/engines/mohawk/myst_scripts.cpp +++ b/engines/mohawk/myst_scripts.cpp @@ -161,7 +161,7 @@ void MystScriptParser::runScript(MystScript script, MystResource *invokingResour _vm->_gfx->enableDrawingTimeSimulation(true); for (uint16 i = 0; i < script->size(); i++) { - MystScriptEntry &entry = script->operator[](i); + MystScriptEntry &entry = (*script)[i]; debugC(kDebugScript, "\tOpcode %d: %d", i, entry.opcode); if (entry.type == kMystScriptNormal) @@ -207,7 +207,7 @@ MystScript MystScriptParser::readScript(Common::SeekableReadStream *stream, Myst script->resize(opcodeCount); for (uint16 i = 0; i < opcodeCount; i++) { - MystScriptEntry &entry = script->operator[](i); + MystScriptEntry &entry = (*script)[i]; entry.type = type; // Resource ID only exists in INIT and EXIT scripts |