TONY: Fix Missing Font Base Class Initialization

This was causing an MSVC warning.
This commit is contained in:
D G Turner 2019-09-30 02:31:00 +01:00
parent c10267d83b
commit cb6b2a3631

View File

@ -138,7 +138,7 @@ int RMFont::stringLen(char bChar, char bNext) {
* RMFontColor Methods
\****************************************************************************/
RMFontColor::RMFontColor() : RMFont() {
RMFontColor::RMFontColor() {
_fontR = _fontG = _fontB = 255;
}