[Scummvm-cvs-logs] SF.net SVN: scummvm:[43276] scummvm/trunk/engines/agos

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Tue Aug 11 17:35:30 CEST 2009


Revision: 43276
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43276&view=rev
Author:   lordhoto
Date:     2009-08-11 15:35:30 +0000 (Tue, 11 Aug 2009)

Log Message:
-----------
Fix AGOS compilation.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/agos.h
    scummvm/trunk/engines/agos/vga_pn.cpp

Modified: scummvm/trunk/engines/agos/agos.h
===================================================================
--- scummvm/trunk/engines/agos/agos.h	2009-08-11 15:35:13 UTC (rev 43275)
+++ scummvm/trunk/engines/agos/agos.h	2009-08-11 15:35:30 UTC (rev 43276)
@@ -1364,9 +1364,6 @@
 	int _tagOfActiveDoline;	///< tag of the active doline "instance"
 	int _dolineReturnVal;
 
-	jmp_buf _loadfail;
-
-
 	byte *_dataBase, *_textBase;
 	uint32 _dataBaseSize, _textBaseSize;
 

Modified: scummvm/trunk/engines/agos/vga_pn.cpp
===================================================================
--- scummvm/trunk/engines/agos/vga_pn.cpp	2009-08-11 15:35:13 UTC (rev 43275)
+++ scummvm/trunk/engines/agos/vga_pn.cpp	2009-08-11 15:35:30 UTC (rev 43276)
@@ -57,7 +57,9 @@
 	op[20] = &AGOSEngine::vc19_loop;
 	op[21] = &AGOSEngine::vc20_setRepeat;
 	op[22] = &AGOSEngine::vc21_endRepeat;
-	op[23] = &AGOSEngine::vc22_setPaletteOld;
+	// FIXME: This has been "vc22_setPaletteOld" before, but that does not seem to exist.
+	// Please check whether "vc22_setPalette" is fine to be used here.
+	op[23] = &AGOSEngine::vc22_setPalette;
 	op[24] = &AGOSEngine::vc23_setPriority;
 	op[25] = &AGOSEngine::vc24_setSpriteXY;
 	op[26] = &AGOSEngine::vc25_halt_sprite;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list