aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorMax Horn2004-11-22 22:32:46 +0000
committerMax Horn2004-11-22 22:32:46 +0000
commite146d5f8c36596e59b0d8b88392cb7474259170d (patch)
tree5fffdf0e4aa1fe911c65d48d2f73c4380b94ebfc /scumm/string.cpp
parentf66f7865585d0b84c2efbeccdff50fc0dedd615c (diff)
downloadscummvm-rg350-e146d5f8c36596e59b0d8b88392cb7474259170d.tar.gz
scummvm-rg350-e146d5f8c36596e59b0d8b88392cb7474259170d.tar.bz2
scummvm-rg350-e146d5f8c36596e59b0d8b88392cb7474259170d.zip
Renamed unkMessage2 to showMessageDialog; use printString() in script_v100he.cpp, too
svn-id: r15862
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 362864acff..71c3987b47 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -46,7 +46,7 @@ void ScummEngine::printString(int m, const byte *msg) {
unkMessage1(msg);
break;
case 3:
- unkMessage2(msg);
+ showMessageDialog(msg);
break;
}
}
@@ -79,7 +79,7 @@ void ScummEngine::unkMessage1(const byte *msg) {
}
}
-void ScummEngine::unkMessage2(const byte *msg) {
+void ScummEngine::showMessageDialog(const byte *msg) {
// Original COMI used different code at this point.
// Seemed to use blastText for the messages
byte buf[100];