aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v1.cpp
diff options
context:
space:
mode:
authorSven Hesse2009-07-05 11:26:42 +0000
committerSven Hesse2009-07-05 11:26:42 +0000
commit704895b35ff365525e894f8caf92c4383d446209 (patch)
tree8d18ed31ac90f7897aae859caa1fc212e6699719 /engines/gob/inter_v1.cpp
parentd2c2386c6ad70cb1e7edd40b1c007c5f863be99c (diff)
downloadscummvm-rg350-704895b35ff365525e894f8caf92c4383d446209.tar.gz
scummvm-rg350-704895b35ff365525e894f8caf92c4383d446209.tar.bz2
scummvm-rg350-704895b35ff365525e894f8caf92c4383d446209.zip
Commenting prepareStr a bit and renaming it to cleanupStr
svn-id: r42120
Diffstat (limited to 'engines/gob/inter_v1.cpp')
-rw-r--r--engines/gob/inter_v1.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 96ecfc6b25..23c9351dd4 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -147,7 +147,7 @@ void Inter_v1::setupOpcodesFunc() {
OPCODEFUNC(0x3E, o1_getFreeMem);
OPCODEFUNC(0x3F, o1_checkData);
- OPCODEFUNC(0x41, o1_prepareStr);
+ OPCODEFUNC(0x41, o1_cleanupStr);
OPCODEFUNC(0x42, o1_insertStr);
OPCODEFUNC(0x43, o1_cutStr);
@@ -1601,11 +1601,11 @@ bool Inter_v1::o1_checkData(OpFuncParams &params) {
return false;
}
-bool Inter_v1::o1_prepareStr(OpFuncParams &params) {
+bool Inter_v1::o1_cleanupStr(OpFuncParams &params) {
int16 strVar;
strVar = _vm->_game->_script->readVarIndex();
- _vm->_util->prepareStr(GET_VARO_FSTR(strVar));
+ _vm->_util->cleanupStr(GET_VARO_FSTR(strVar));
return false;
}