[Scummvm-cvs-logs] SF.net SVN: scummvm:[41761] scummvm/trunk/engines/gob

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Mon Jun 22 12:29:48 CEST 2009


Revision: 41761
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41761&view=rev
Author:   drmccoy
Date:     2009-06-22 10:29:48 +0000 (Mon, 22 Jun 2009)

Log Message:
-----------
Removing the Parse object from GobEngine

Modified Paths:
--------------
    scummvm/trunk/engines/gob/gob.cpp
    scummvm/trunk/engines/gob/gob.h
    scummvm/trunk/engines/gob/script.h

Modified: scummvm/trunk/engines/gob/gob.cpp
===================================================================
--- scummvm/trunk/engines/gob/gob.cpp	2009-06-22 10:29:32 UTC (rev 41760)
+++ scummvm/trunk/engines/gob/gob.cpp	2009-06-22 10:29:48 UTC (rev 41761)
@@ -102,12 +102,12 @@
 
 
 GobEngine::GobEngine(OSystem *syst) : Engine(syst) {
-	_sound     = 0; _mult     = 0; _game   = 0;
-	_global    = 0; _dataIO   = 0; _goblin = 0;
-	_vidPlayer = 0; _init     = 0; _inter  = 0;
-	_map       = 0; _palAnim  = 0; _parse  = 0;
-	_scenery   = 0; _draw     = 0; _util   = 0;
-	_video     = 0; _saveLoad = 0;
+	_sound     = 0; _mult     = 0; _game    = 0;
+	_global    = 0; _dataIO   = 0; _goblin  = 0;
+	_vidPlayer = 0; _init     = 0; _inter   = 0;
+	_map       = 0; _palAnim  = 0; _scenery = 0;
+	_draw      = 0; _util     = 0; _video   = 0;
+	_saveLoad  = 0;
 
 	_pauseStart = 0;
 
@@ -332,7 +332,6 @@
 	_palAnim = new PalAnim(this);
 	_vidPlayer = new VideoPlayer(this);
 	_sound = new Sound(this);
-	_parse = new Parse(this);
 
 	switch (_gameType) {
 	case kGameTypeGeisha:
@@ -497,7 +496,6 @@
 	delete _inter;     _inter = 0;
 	delete _map;       _map = 0;
 	delete _palAnim;   _palAnim = 0;
-	delete _parse;     _parse = 0;
 	delete _scenery;   _scenery = 0;
 	delete _draw;      _draw = 0;
 	delete _util;      _util = 0;

Modified: scummvm/trunk/engines/gob/gob.h
===================================================================
--- scummvm/trunk/engines/gob/gob.h	2009-06-22 10:29:32 UTC (rev 41760)
+++ scummvm/trunk/engines/gob/gob.h	2009-06-22 10:29:48 UTC (rev 41761)
@@ -52,7 +52,6 @@
 class Map;
 class Mult;
 class PalAnim;
-class Parse;
 class Scenery;
 class Util;
 class SaveLoad;
@@ -197,7 +196,6 @@
 	Map *_map;
 	Mult *_mult;
 	PalAnim *_palAnim;
-	Parse *_parse;
 	Scenery *_scenery;
 	Inter *_inter;
 	SaveLoad *_saveLoad;

Modified: scummvm/trunk/engines/gob/script.h
===================================================================
--- scummvm/trunk/engines/gob/script.h	2009-06-22 10:29:32 UTC (rev 41760)
+++ scummvm/trunk/engines/gob/script.h	2009-06-22 10:29:48 UTC (rev 41761)
@@ -32,6 +32,7 @@
 namespace Gob {
 
 class GobEngine;
+class Parse;
 
 class Script {
 public:


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