diff options
author | D G Turner | 2019-09-30 02:31:00 +0100 |
---|---|---|
committer | D G Turner | 2019-09-30 02:31:00 +0100 |
commit | cb6b2a363167e9bcb5845c637d828b5af8bd873e (patch) | |
tree | ed8109f3d180d8a7e3e6650eaa97416b89bf7c27 | |
parent | c10267d83b01cc8e42973c41fb365131a316b68b (diff) | |
download | scummvm-rg350-cb6b2a363167e9bcb5845c637d828b5af8bd873e.tar.gz scummvm-rg350-cb6b2a363167e9bcb5845c637d828b5af8bd873e.tar.bz2 scummvm-rg350-cb6b2a363167e9bcb5845c637d828b5af8bd873e.zip |
TONY: Fix Missing Font Base Class Initialization
This was causing an MSVC warning.
-rw-r--r-- | engines/tony/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/font.cpp b/engines/tony/font.cpp index fb40bf5c67..66a8f9cbbe 100644 --- a/engines/tony/font.cpp +++ b/engines/tony/font.cpp @@ -138,7 +138,7 @@ int RMFont::stringLen(char bChar, char bNext) { * RMFontColor Methods \****************************************************************************/ -RMFontColor::RMFontColor() : RMFont() { +RMFontColor::RMFontColor() { _fontR = _fontG = _fontB = 255; } |