diff options
-rw-r--r-- | engines/hdb/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp index 80e5ac832a..f380b9ffd1 100644 --- a/engines/hdb/gfx.cpp +++ b/engines/hdb/gfx.cpp @@ -725,9 +725,9 @@ int Gfx::animateTile(int tileIndex) { } bool Gfx::loadFont(const char *string) { + Common::SeekableReadStream *stream = g_hdb->_fileMan->findFirstData(string, TYPE_FONT); if (!stream) { - delete stream; return false; } |