[Scummvm-cvs-logs] scummvm master -> 321197e9629e6bfebac5e7909549df54a5b035ea

digitall digitall at scummvm.org
Thu Jul 26 02:55:53 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:
321197e962 TEENAGENT: Fix typo in processCallback() address.


Commit: 321197e9629e6bfebac5e7909549df54a5b035ea
    https://github.com/scummvm/scummvm/commit/321197e9629e6bfebac5e7909549df54a5b035ea
Author: D G Turner (digitall at scummvm.org)
Date: 2012-07-25T17:53:48-07:00

Commit Message:
TEENAGENT: Fix typo in processCallback() address.

0x50c5 is invalid, replaced with valid 0x505c.

Changed paths:
    engines/teenagent/callbacks.cpp



diff --git a/engines/teenagent/callbacks.cpp b/engines/teenagent/callbacks.cpp
index 46d9b7d..934727a 100644
--- a/engines/teenagent/callbacks.cpp
+++ b/engines/teenagent/callbacks.cpp
@@ -2252,7 +2252,7 @@ bool TeenAgentEngine::processCallback(uint16 addr) {
 		return true;
 
 	case 0x78e0:
-		processCallback(0x50c5);
+		processCallback(0x505c);
 		return false;
 
 	case 0x78e7:






More information about the Scummvm-git-logs mailing list