aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v2.cpp
diff options
context:
space:
mode:
authorSven Hesse2009-06-06 23:39:58 +0000
committerSven Hesse2009-06-06 23:39:58 +0000
commit64a920d52ff5dd251d6c2e8b1e9766726d347e48 (patch)
treecb5aabb2aaca102902742adf7a6068b342ebb086 /engines/gob/inter_v2.cpp
parentf906c4e80f12ebc1c46fe8c80dfa26ff0e4d64aa (diff)
downloadscummvm-rg350-64a920d52ff5dd251d6c2e8b1e9766726d347e48.tar.gz
scummvm-rg350-64a920d52ff5dd251d6c2e8b1e9766726d347e48.tar.bz2
scummvm-rg350-64a920d52ff5dd251d6c2e8b1e9766726d347e48.zip
Renamed the evaluateStore opcodes to assign, because that's what they are
svn-id: r41312
Diffstat (limited to 'engines/gob/inter_v2.cpp')
-rw-r--r--engines/gob/inter_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/inter_v2.cpp b/engines/gob/inter_v2.cpp
index bb77951573..3107fcf9bc 100644
--- a/engines/gob/inter_v2.cpp
+++ b/engines/gob/inter_v2.cpp
@@ -436,7 +436,7 @@ void Inter_v2::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o2_evaluateStore),
+ OPCODE(o2_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
@@ -1588,7 +1588,7 @@ void Inter_v2::o2_setImdFrontSurf() {
void Inter_v2::o2_resetImdFrontSurf() {
}
-bool Inter_v2::o2_evaluateStore(OpFuncParams &params) {
+bool Inter_v2::o2_assign(OpFuncParams &params) {
byte *savedPos;
int16 varOff;
int16 token;