- removed gamemode check for shareware message. It also uses LANGUAGE conditionals now.

SVN r2931 (trunk)
This commit is contained in:
Christoph Oelckers 2010-10-11 22:10:15 +00:00
commit dd17c35d89
4 changed files with 3 additions and 11 deletions

View file

@ -361,14 +361,7 @@ void M_SetMenu(FName menu, int param)
if ((gameinfo.flags & GI_SHAREWARE) && param > 0)
{
// Only Doom and Heretic have multi-episode shareware versions.
if (gameinfo.gametype == GAME_Doom)
{
M_StartMessage(GStrings("SWSTRING"), 1);
}
else
{
M_StartMessage(GStrings("MNU_ONLYREGISTERED"), 1);
}
M_StartMessage(GStrings("SWSTRING"), 1);
return;
}