Font: Fix default 'shadow' value for RGSS1

This commit is contained in:
Jonas Kulla 2014-10-09 18:53:24 +02:00
parent 0c08fc2d16
commit 1b7ed5ed78
1 changed files with 2 additions and 2 deletions

View File

@ -387,8 +387,8 @@ void Font::initDefaultDynAttribs()
void Font::initDefaults() void Font::initDefaults()
{ {
FontPrivate::defaultOutline = (rgssVer >= 3 ? true : false); FontPrivate::defaultOutline = (rgssVer >= 3 ? true : false);
FontPrivate::defaultShadow = (rgssVer >= 3 ? false : true ); FontPrivate::defaultShadow = (rgssVer == 2 ? true : false);
} }
_TTF_Font *Font::getSdlFont() _TTF_Font *Font::getSdlFont()