Page 1 of 1

[r319] GCC Compile Error +Fix

Posted: Wed Apr 01, 2009 0:01
by Agent ME
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

Code: Select all

P_LoadTranslator(!level.info->Translator.IsEmpty()? level.info->Translator.GetChars() : gameinfo.translator);
to

Code: Select all

P_LoadTranslator(!level.info->Translator.IsEmpty()? level.info->Translator.GetChars() : gameinfo.translator.GetChars());
fixes gzdoom compiling in GCC.

Re: [r319] GCC Compile Error +Fix

Posted: Wed Apr 01, 2009 7:53
by Graf Zahl
fixed