diff options
Diffstat (limited to 'scumm/string.cpp')
| -rw-r--r-- | scumm/string.cpp | 4 |
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]; |
