[Scummvm-cvs-logs] SF.net SVN: scummvm: [29592] scummvm/trunk/engines/agi
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Wed Nov 21 17:55:25 CET 2007
Revision: 29592
http://scummvm.svn.sourceforge.net/scummvm/?rev=29592&view=rev
Author: thebluegr
Date: 2007-11-21 08:55:24 -0800 (Wed, 21 Nov 2007)
Log Message:
-----------
Cleanup
Modified Paths:
--------------
scummvm/trunk/engines/agi/picture.cpp
scummvm/trunk/engines/agi/picture.h
Modified: scummvm/trunk/engines/agi/picture.cpp
===================================================================
--- scummvm/trunk/engines/agi/picture.cpp 2007-11-21 00:41:51 UTC (rev 29591)
+++ scummvm/trunk/engines/agi/picture.cpp 2007-11-21 16:55:24 UTC (rev 29592)
@@ -25,7 +25,6 @@
#include "agi/agi.h"
#include "agi/graphics.h"
-#include "common/stack.h"
namespace Agi {
@@ -62,11 +61,6 @@
*p = _scrColor | (*p & 0xf0);
}
-// For the flood fill routines
-
-// MH2 needs stack size > 300
-Common::Stack<uint16> _stack;
-
/**
* Draw an AGI line.
* A line drawing routine sent by Joshua Neal, modified by Stuart George
Modified: scummvm/trunk/engines/agi/picture.h
===================================================================
--- scummvm/trunk/engines/agi/picture.h 2007-11-21 00:41:51 UTC (rev 29591)
+++ scummvm/trunk/engines/agi/picture.h 2007-11-21 16:55:24 UTC (rev 29592)
@@ -27,6 +27,7 @@
#define AGI_PICTURE_H
#include "agi/agi.h"
+#include "common/stack.h"
namespace Agi {
@@ -140,6 +141,7 @@
int _flags;
int _currentStep;
+ Common::Stack<uint16> _stack; // For the flood fill routines
};
} // End of namespace Agi
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