aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/intern.h4
-rw-r--r--scumm/script_v100he.cpp2
-rw-r--r--scumm/script_v72he.cpp6
-rw-r--r--scumm/script_v7he.cpp6
-rw-r--r--scumm/script_v80he.cpp2
-rw-r--r--scumm/script_v90he.cpp2
6 files changed, 11 insertions, 11 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 038c0dd070..d6b8a1380d 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -646,7 +646,7 @@ protected:
void o70_unknownF5();
void o70_unknownF6();
void o70_setFilePath();
- void o70_unknownFA();
+ void o70_setWindowCaption();
void o70_polygonOps();
void o70_polygonHit();
};
@@ -777,7 +777,7 @@ protected:
void o72_unknownF6();
void o72_getResourceSize();
void o72_setFilePath();
- void o72_unknownFA();
+ void o72_setWindowCaption();
};
class ScummEngine_v80he : public ScummEngine_v72he {
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp
index b79c7ca0ca..21fb61589c 100644
--- a/scumm/script_v100he.cpp
+++ b/scumm/script_v100he.cpp
@@ -186,7 +186,7 @@ void ScummEngine_v100he::setupOpcodes() {
/* 70 */
OPCODE(o6_invalid),
OPCODE(o6_setBoxSet),
- OPCODE(o72_unknownFA),
+ OPCODE(o72_setWindowCaption),
OPCODE(o6_shuffle),
/* 74 */
OPCODE(o6_delay),
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index f78c97df7f..0e715d3963 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -357,7 +357,7 @@ void ScummEngine_v72he::setupOpcodes() {
/* F8 */
OPCODE(o72_getResourceSize),
OPCODE(o72_setFilePath),
- OPCODE(o72_unknownFA),
+ OPCODE(o72_setWindowCaption),
OPCODE(o70_polygonOps),
/* FC */
OPCODE(o70_polygonHit),
@@ -2514,12 +2514,12 @@ void ScummEngine_v72he::o72_setFilePath() {
debug(1,"o72_setFilePath: %s", filename);
}
-void ScummEngine_v72he::o72_unknownFA() {
+void ScummEngine_v72he::o72_setWindowCaption() {
byte name[100];
copyScriptString(name);
int id = fetchScriptByte();
- debug(1,"o72_unknownFA: (%d) %s", id, name);
+ debug(1,"o72_setWindowCaption: (%d) %s", id, name);
}
void ScummEngine_v72he::decodeParseString(int m, int n) {
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 367b8a3a59..8c45d57d7c 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -358,7 +358,7 @@ void ScummEngine_v70he::setupOpcodes() {
/* F8 */
OPCODE(o6_invalid),
OPCODE(o70_setFilePath),
- OPCODE(o70_unknownFA),
+ OPCODE(o70_setWindowCaption),
OPCODE(o70_polygonOps),
/* FC */
OPCODE(o70_polygonHit),
@@ -899,10 +899,10 @@ void ScummEngine_v70he::o70_setFilePath() {
debug(1,"stub o70_setFilePath(%s)", filename);
}
-void ScummEngine_v70he::o70_unknownFA() {
+void ScummEngine_v70he::o70_setWindowCaption() {
int num = fetchScriptByte();
int len = resStrLen(_scriptPointer);
- debug(1,"stub o70_unknownFA(%d, \"%s\")", num, _scriptPointer);
+ debug(1,"stub o70_setWindowCaption(%d, \"%s\")", num, _scriptPointer);
_scriptPointer += len + 1;
}
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp
index 5265282939..731138d035 100644
--- a/scumm/script_v80he.cpp
+++ b/scumm/script_v80he.cpp
@@ -356,7 +356,7 @@ void ScummEngine_v80he::setupOpcodes() {
/* F8 */
OPCODE(o72_getResourceSize),
OPCODE(o72_setFilePath),
- OPCODE(o72_unknownFA),
+ OPCODE(o72_setWindowCaption),
OPCODE(o70_polygonOps),
/* FC */
OPCODE(o70_polygonHit),
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp
index 9d334428c6..c2f3be8cea 100644
--- a/scumm/script_v90he.cpp
+++ b/scumm/script_v90he.cpp
@@ -356,7 +356,7 @@ void ScummEngine_v90he::setupOpcodes() {
/* F8 */
OPCODE(o72_getResourceSize),
OPCODE(o72_setFilePath),
- OPCODE(o72_unknownFA),
+ OPCODE(o72_setWindowCaption),
OPCODE(o70_polygonOps),
/* FC */
OPCODE(o70_polygonHit),