diff options
author | Paul Gilbert | 2013-06-17 23:06:00 -0400 |
---|---|---|
committer | Paul Gilbert | 2013-06-17 23:06:00 -0400 |
commit | 65a6308a5a2dce2410ab8509e89a1c0e09d22558 (patch) | |
tree | bf41d8c9598a00c12a4b07eed004c7f8a66ab54f /engines/voyeur | |
parent | b135ce3d28c0558433807fab73bd06514a1ec62f (diff) | |
download | scummvm-rg350-65a6308a5a2dce2410ab8509e89a1c0e09d22558.tar.gz scummvm-rg350-65a6308a5a2dce2410ab8509e89a1c0e09d22558.tar.bz2 scummvm-rg350-65a6308a5a2dce2410ab8509e89a1c0e09d22558.zip |
VOYEUR: Fix crash on shutdown
Diffstat (limited to 'engines/voyeur')
-rw-r--r-- | engines/voyeur/files.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/voyeur/files.cpp b/engines/voyeur/files.cpp index 992fb5ad05..9e97dea1cd 100644 --- a/engines/voyeur/files.cpp +++ b/engines/voyeur/files.cpp @@ -1000,6 +1000,7 @@ int ViewPortResource::drawText(const Common::String &msg) { gfxManager.sDrawPic(&_fontChar, this, Common::Point(xp, yp)); + _fontChar._imgData = NULL; xp += charWidth + padding; msgWidth += charWidth + padding; } |