aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
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
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')
-rw-r--r--engines/gob/inter.h6
-rw-r--r--engines/gob/inter_bargon.cpp2
-rw-r--r--engines/gob/inter_fascin.cpp2
-rw-r--r--engines/gob/inter_v1.cpp4
-rw-r--r--engines/gob/inter_v2.cpp4
-rw-r--r--engines/gob/inter_v3.cpp2
-rw-r--r--engines/gob/inter_v4.cpp2
-rw-r--r--engines/gob/inter_v5.cpp2
-rw-r--r--engines/gob/inter_v6.cpp4
9 files changed, 14 insertions, 14 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index ee49658318..412c3f2673 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -185,7 +185,7 @@ protected:
bool o1_repeatUntil(OpFuncParams &params);
bool o1_whileDo(OpFuncParams &params);
bool o1_if(OpFuncParams &params);
- bool o1_evaluateStore(OpFuncParams &params);
+ bool o1_assign(OpFuncParams &params);
bool o1_loadSpriteToPos(OpFuncParams &params);
bool o1_printText(OpFuncParams &params);
bool o1_loadTot(OpFuncParams &params);
@@ -383,7 +383,7 @@ protected:
void o2_closeItk();
void o2_setImdFrontSurf();
void o2_resetImdFrontSurf();
- bool o2_evaluateStore(OpFuncParams &params);
+ bool o2_assign(OpFuncParams &params);
bool o2_printText(OpFuncParams &params);
bool o2_animPalInit(OpFuncParams &params);
bool o2_addCollision(OpFuncParams &params);
@@ -692,7 +692,7 @@ protected:
void o6_openItk();
bool o6_loadCursor(OpFuncParams &params);
- bool o6_evaluateStore(OpFuncParams &params);
+ bool o6_assign(OpFuncParams &params);
bool o6_palLoad(OpFuncParams &params);
bool o6_freeCollision(OpFuncParams &params);
bool o6_fillRect(OpFuncParams &params);
diff --git a/engines/gob/inter_bargon.cpp b/engines/gob/inter_bargon.cpp
index e729c67f6a..54ca32fa9e 100644
--- a/engines/gob/inter_bargon.cpp
+++ b/engines/gob/inter_bargon.cpp
@@ -456,7 +456,7 @@ void Inter_Bargon::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o2_evaluateStore),
+ OPCODE(o2_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
diff --git a/engines/gob/inter_fascin.cpp b/engines/gob/inter_fascin.cpp
index 58c3e703ff..af8c8976cd 100644
--- a/engines/gob/inter_fascin.cpp
+++ b/engines/gob/inter_fascin.cpp
@@ -401,7 +401,7 @@ void Inter_Fascination::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o2_evaluateStore),
+ OPCODE(o2_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 7c72d4a1a9..ace5a7a3be 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -463,7 +463,7 @@ void Inter_v1::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o1_evaluateStore),
+ OPCODE(o1_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
@@ -1322,7 +1322,7 @@ bool Inter_v1::o1_if(OpFuncParams &params) {
return false;
}
-bool Inter_v1::o1_evaluateStore(OpFuncParams &params) {
+bool Inter_v1::o1_assign(OpFuncParams &params) {
byte *savedPos;
int16 token;
int16 result;
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;
diff --git a/engines/gob/inter_v3.cpp b/engines/gob/inter_v3.cpp
index b66080452a..6819b369b8 100644
--- a/engines/gob/inter_v3.cpp
+++ b/engines/gob/inter_v3.cpp
@@ -453,7 +453,7 @@ void Inter_v3::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o2_evaluateStore),
+ OPCODE(o2_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
diff --git a/engines/gob/inter_v4.cpp b/engines/gob/inter_v4.cpp
index a4071d91e2..6ab55d70af 100644
--- a/engines/gob/inter_v4.cpp
+++ b/engines/gob/inter_v4.cpp
@@ -455,7 +455,7 @@ void Inter_v4::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o2_evaluateStore),
+ OPCODE(o2_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
diff --git a/engines/gob/inter_v5.cpp b/engines/gob/inter_v5.cpp
index 1e0bdfb7a0..cb5b28cb67 100644
--- a/engines/gob/inter_v5.cpp
+++ b/engines/gob/inter_v5.cpp
@@ -408,7 +408,7 @@ void Inter_v5::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o2_evaluateStore),
+ OPCODE(o2_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index e48414ecc0..f40314f87e 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -388,7 +388,7 @@ void Inter_v6::setupOpcodes() {
OPCODE(o1_whileDo),
/* 08 */
OPCODE(o1_if),
- OPCODE(o6_evaluateStore),
+ OPCODE(o6_assign),
OPCODE(o1_loadSpriteToPos),
{0, ""},
/* 0C */
@@ -840,7 +840,7 @@ bool Inter_v6::o6_loadCursor(OpFuncParams &params) {
return false;
}
-bool Inter_v6::o6_evaluateStore(OpFuncParams &params) {
+bool Inter_v6::o6_assign(OpFuncParams &params) {
byte *savedPos;
int16 varOff;
int16 token;