[r319] GCC Compile Error +Fix
Posted: Wed Apr 01, 2009 0:01
GCC currently complains about an error in src/p_setup.cpp.
After looking at the version of the file from zdoom, I figured that changing line 3415 from
to
fixes gzdoom compiling in GCC.
After looking at the version of the file from zdoom, I figured that changing line 3415 from
Code: Select all
P_LoadTranslator(!level.info->Translator.IsEmpty()? level.info->Translator.GetChars() : gameinfo.translator);
Code: Select all
P_LoadTranslator(!level.info->Translator.IsEmpty()? level.info->Translator.GetChars() : gameinfo.translator.GetChars());