diff options
author | Filippos Karapetis | 2008-05-09 12:23:19 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-05-09 12:23:19 +0000 |
commit | 601f0efdd48139657096b5262c482c1bfc4bd470 (patch) | |
tree | 58d24554cd93ff37233731a3d11de916abd5b5f9 /engines/made | |
parent | b222d0c5390b052fadeb6eec67e425e354a8401c (diff) | |
download | scummvm-rg350-601f0efdd48139657096b5262c482c1bfc4bd470.tar.gz scummvm-rg350-601f0efdd48139657096b5262c482c1bfc4bd470.tar.bz2 scummvm-rg350-601f0efdd48139657096b5262c482c1bfc4bd470.zip |
Removed now obsolete FIXME
svn-id: r31964
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/screen.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp index f2888cada7..c88244a8a2 100644 --- a/engines/made/screen.cpp +++ b/engines/made/screen.cpp @@ -599,10 +599,8 @@ void Screen::flash(int flashCount) { void Screen::setFont(int16 fontNum) { if (fontNum == _currentFontNum) return; - // FIXME: this causes crashes when - // ProjectReader::purgeCache() is called - //if (_font) - // _vm->_res->freeResource(_font); + if (_font) + _vm->_res->freeResource(_font); _font = _vm->_res->getFont(fontNum); _currentFontNum = fontNum; } |