svn-id: r29592
This commit is contained in:
Filippos Karapetis 2007-11-21 16:55:24 +00:00
parent b39ee7ec3c
commit 634595e073
2 changed files with 2 additions and 6 deletions

View File

@ -25,7 +25,6 @@
#include "agi/agi.h"
#include "agi/graphics.h"
#include "common/stack.h"
namespace Agi {
@ -62,11 +61,6 @@ void PictureMgr::putVirtPixel(int x, int y) {
*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

View File

@ -27,6 +27,7 @@
#define AGI_PICTURE_H
#include "agi/agi.h"
#include "common/stack.h"
namespace Agi {
@ -140,6 +141,7 @@ private:
int _flags;
int _currentStep;
Common::Stack<uint16> _stack; // For the flood fill routines
};
} // End of namespace Agi