diff options
author | Paul Gilbert | 2012-06-11 22:38:03 +1000 |
---|---|---|
committer | Paul Gilbert | 2012-06-11 22:38:03 +1000 |
commit | 71329df502bb07f105f34ac6c4b871ee0e8e19e0 (patch) | |
tree | 2f89137d2e25837f196453b6713634ef21b28067 /engines/tony | |
parent | d20fb7480eaccb59b11e3a5ba02b1a2b60619aaf (diff) | |
download | scummvm-rg350-71329df502bb07f105f34ac6c4b871ee0e8e19e0.tar.gz scummvm-rg350-71329df502bb07f105f34ac6c4b871ee0e8e19e0.tar.bz2 scummvm-rg350-71329df502bb07f105f34ac6c4b871ee0e8e19e0.zip |
TONY: Removed unused variable
Diffstat (limited to 'engines/tony')
-rw-r--r-- | engines/tony/font.cpp | 2 | ||||
-rw-r--r-- | engines/tony/font.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/engines/tony/font.cpp b/engines/tony/font.cpp index 6652e77e13..6f70f41d80 100644 --- a/engines/tony/font.cpp +++ b/engines/tony/font.cpp @@ -1760,7 +1760,6 @@ void RMFontObj::init(void) { \****************************************************************************/ RMFontColor *RMText::_fonts[4] = { NULL, NULL, NULL, NULL }; -RMGfxClearTask RMText::_clear; void RMText::initStatics() { Common::fill(&_fonts[0], &_fonts[4], (RMFontColor *)NULL); @@ -1891,7 +1890,6 @@ void RMText::writeText(const RMString &text, RMFontColor *font, int *time) { // Create the surface create(width, height); - //AddPrim(new RMGfxPrimitive(&m_clear)); Common::fill(_buf, _buf + width * height * 2, 0); p = string; diff --git a/engines/tony/font.h b/engines/tony/font.h index d1423c9749..daaac84a59 100644 --- a/engines/tony/font.h +++ b/engines/tony/font.h @@ -175,7 +175,6 @@ public: class RMText : public RMGfxWoodyBuffer { private: static RMFontColor *_fonts[4]; - static RMGfxClearTask _clear; int _maxLineLength; public: |