[Scummvm-cvs-logs] SF.net SVN: scummvm: [32523] scummvm/trunk/engines/parallaction

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Wed Jun 4 03:04:26 CEST 2008


Revision: 32523
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32523&view=rev
Author:   peres001
Date:     2008-06-03 18:04:26 -0700 (Tue, 03 Jun 2008)

Log Message:
-----------
Return to menu after introduction has played (with glitches).

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/graphics.cpp
    scummvm/trunk/engines/parallaction/graphics.h

Modified: scummvm/trunk/engines/parallaction/graphics.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/graphics.cpp	2008-06-04 00:02:48 UTC (rev 32522)
+++ scummvm/trunk/engines/parallaction/graphics.cpp	2008-06-04 01:04:26 UTC (rev 32523)
@@ -33,10 +33,6 @@
 
 namespace Parallaction {
 
-
-typedef Common::HashMap<Common::String, int32, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> VarMap;
-VarMap _vars;
-
 void Gfx::registerVar(const Common::String &name, int32 initialValue) {
 	if (_vars.contains(name)) {
 		warning("Variable '%s' already registered, ignoring initial value.\n", name.c_str());

Modified: scummvm/trunk/engines/parallaction/graphics.h
===================================================================
--- scummvm/trunk/engines/parallaction/graphics.h	2008-06-04 00:02:48 UTC (rev 32522)
+++ scummvm/trunk/engines/parallaction/graphics.h	2008-06-04 01:04:26 UTC (rev 32523)
@@ -452,10 +452,13 @@
 	kBackgroundSlide = 2
 };
 
+typedef Common::HashMap<Common::String, int32, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> VarMap;
+
 class Gfx {
 
 public:
 	Disk *_disk;
+	VarMap _vars;
 
 	GfxObjList _gfxobjList[3];
 	GfxObj* loadAnim(const char *name);


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