[Scummvm-cvs-logs] scummvm master -> 31b00ac139ee7a4fa49b876a0560ad7282f47d59

digitall digitall at scummvm.org
Sun Jul 22 05:16:50 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
31b00ac139 TEENAGENT: Fix for bug #3540542 ("string truncated after diving").


Commit: 31b00ac139ee7a4fa49b876a0560ad7282f47d59
    https://github.com/scummvm/scummvm/commit/31b00ac139ee7a4fa49b876a0560ad7282f47d59
Author: D G Turner (digitall at scummvm.org)
Date: 2012-07-21T20:14:58-07:00

Commit Message:
TEENAGENT: Fix for bug #3540542 ("string truncated after diving").

This was a typo in the string offset.

Changed paths:
    engines/teenagent/callbacks.cpp



diff --git a/engines/teenagent/callbacks.cpp b/engines/teenagent/callbacks.cpp
index 8882531..b0ccb88 100644
--- a/engines/teenagent/callbacks.cpp
+++ b/engines/teenagent/callbacks.cpp
@@ -3925,7 +3925,7 @@ bool TeenAgentEngine::processCallback(uint16 addr) {
 			displayMessage(0x39ae);
 			break;
 		default:
-			displayMessage(0x39b7);
+			displayMessage(0x3ab7);
 		}
 		return true;
 






More information about the Scummvm-git-logs mailing list