[Scummvm-cvs-logs] scummvm master -> 8ac70ac94a6ecfcbb74c65aac730fa707ab6fa6e

digitall digitall at scummvm.org
Sun Jul 22 22:17:32 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:
8ac70ac94a TEENAGENT: Fix another invalid string offset.


Commit: 8ac70ac94a6ecfcbb74c65aac730fa707ab6fa6e
    https://github.com/scummvm/scummvm/commit/8ac70ac94a6ecfcbb74c65aac730fa707ab6fa6e
Author: D G Turner (digitall at scummvm.org)
Date: 2012-07-22T13:15:49-07:00

Commit Message:
TEENAGENT: Fix another invalid string offset.

This typo caused an incorrect string output when Mark examines the car
trunk when it is empty.

Changed paths:
    engines/teenagent/callbacks.cpp



diff --git a/engines/teenagent/callbacks.cpp b/engines/teenagent/callbacks.cpp
index b0ccb88..46d9b7d 100644
--- a/engines/teenagent/callbacks.cpp
+++ b/engines/teenagent/callbacks.cpp
@@ -2265,7 +2265,7 @@ bool TeenAgentEngine::processCallback(uint16 addr) {
 
 	case 0x78f5:
 		if (CHECK_FLAG(0xDB95, 1)) {
-			displayMessage(0x3575);
+			displayMessage(0x3E75);
 			return true;
 		} else
 			return false;






More information about the Scummvm-git-logs mailing list