diff options
author | D G Turner | 2012-07-22 22:35:00 +0100 |
---|---|---|
committer | D G Turner | 2012-07-22 22:35:00 +0100 |
commit | f9d3cb8e28395212aade3d23bea5c801c5b5f6e7 (patch) | |
tree | 12fc4aa5d5643032a993bc232415076d33be1ff9 | |
parent | c373ed4ea4e383db217882efe8a3882ea2d80b8f (diff) | |
download | scummvm-rg350-f9d3cb8e28395212aade3d23bea5c801c5b5f6e7.tar.gz scummvm-rg350-f9d3cb8e28395212aade3d23bea5c801c5b5f6e7.tar.bz2 scummvm-rg350-f9d3cb8e28395212aade3d23bea5c801c5b5f6e7.zip |
TEENAGENT: Fix another invalid string offset.
This typo caused an incorrect string output when Mark examines the
car trunk when it is empty.
-rw-r--r-- | engines/teenagent/callbacks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/teenagent/callbacks.cpp b/engines/teenagent/callbacks.cpp index bc4720bec2..7b4e7e6ead 100644 --- a/engines/teenagent/callbacks.cpp +++ b/engines/teenagent/callbacks.cpp @@ -2269,7 +2269,7 @@ bool TeenAgentEngine::processCallback(uint16 addr) { case 0x78f5: if (CHECK_FLAG(0xdb95, 1)) { - displayMessage(0x3575); // FIXME: Not sure this address is correct + displayMessage(dsAddr_bootEmptyMsg); // "There's nothing else in the boot" } else retVal = false; break; |