aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/font.cpp')
-rw-r--r--engines/mads/font.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/font.cpp b/engines/mads/font.cpp
index e97cc95fdf..076eca92c6 100644
--- a/engines/mads/font.cpp
+++ b/engines/mads/font.cpp
@@ -233,7 +233,7 @@ void FontM4::setFont(const Common::String &filename) {
_sysFont = false;
_filename = filename;
- Common::SeekableReadStream *fontFile = _vm->_resources->openFile(filename);
+ Common::SeekableReadStream *fontFile = nullptr; //_vm->_resources->openFile(filename);
if (fontFile->readUint32LE() != MKTAG('F', 'O', 'N', 'T')) {
warning("Font: FONT tag expected");
@@ -272,7 +272,7 @@ void FontM4::setFont(const Common::String &filename) {
_charData = new uint8[fontSize];
fontFile->read(_charData, fontSize);
- _vm->_resources->toss(filename);
+// _vm->_resources->toss(filename);
}
int FontM4::getBpp(int charWidth) {