[Scummvm-cvs-logs] scummvm master -> 454bad69e998a8007938e0505f5fafe4e3b06eaf

dhewg dhewg at wiibrew.org
Wed Mar 16 21:00:04 CET 2011


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:
454bad69e9 AGI: Remove newlines from debug()


Commit: 454bad69e998a8007938e0505f5fafe4e3b06eaf
    https://github.com/scummvm/scummvm/commit/454bad69e998a8007938e0505f5fafe4e3b06eaf
Author: dhewg (dhewg at wiibrew.org)
Date: 2011-03-16T12:58:57-07:00

Commit Message:
AGI: Remove newlines from debug()

Changed paths:
    engines/agi/agi.cpp



diff --git a/engines/agi/agi.cpp b/engines/agi/agi.cpp
index c5a1f81..632587f 100644
--- a/engines/agi/agi.cpp
+++ b/engines/agi/agi.cpp
@@ -354,12 +354,12 @@ int AgiEngine::agiInit() {
 
 	switch (getVersion() >> 12) {
 	case 2:
-		debug("Emulating Sierra AGI v%x.%03x\n",
+		debug("Emulating Sierra AGI v%x.%03x",
 				(int)(getVersion() >> 12) & 0xF,
 				(int)(getVersion()) & 0xFFF);
 		break;
 	case 3:
-		debug("Emulating Sierra AGI v%x.002.%03x\n",
+		debug("Emulating Sierra AGI v%x.002.%03x",
 				(int)(getVersion() >> 12) & 0xF,
 				(int)(getVersion()) & 0xFFF);
 		break;






More information about the Scummvm-git-logs mailing list