mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- removed gamemode check for shareware message. It also uses LANGUAGE conditionals now.
SVN r2931 (trunk)
This commit is contained in:
parent
2eac96143e
commit
dd17c35d89
4 changed files with 3 additions and 11 deletions
|
@ -10,7 +10,6 @@ enum EGameType
|
|||
GAME_Chex = 16, //Chex is basically Doom, but we need to have a different set of actors.
|
||||
|
||||
GAME_Raven = GAME_Heretic|GAME_Hexen,
|
||||
GAME_DoomStrife = GAME_Doom|GAME_Strife,
|
||||
GAME_DoomChex = GAME_Doom|GAME_Chex,
|
||||
GAME_DoomStrifeChex = GAME_Doom|GAME_Strife|GAME_Chex
|
||||
};
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -1559,7 +1559,7 @@ MNU_PLAYERSETUP = "PLAYER SETUP";
|
|||
|
||||
MNU_DELETESG = "Do you really want to delete the savegame\n";
|
||||
|
||||
MNU_ONLYREGISTERED = "ONLY AVAILABLE IN THE REGISTERED VERSION";
|
||||
$ifgame(heretic) SWSTRING = "ONLY AVAILABLE IN THE REGISTERED VERSION";
|
||||
|
||||
MNU_EPISODE = "Select Episode";
|
||||
|
||||
|
|
|
@ -1369,7 +1369,7 @@ MNU_PLAYERSETUP = "REGLAGE DU JOUEUR";
|
|||
|
||||
MNU_DELETESG = "Voulez vous vraiment effacer cette sauvegarde?\n";
|
||||
|
||||
MNU_ONLYREGISTERED = "SEULEMENT DISPONIBLE DANS LA VERSION ENREGISTREE";
|
||||
$ifgame(heretic) SWSTRING = "SEULEMENT DISPONIBLE DANS LA VERSION ENREGISTREE";
|
||||
|
||||
// Bloodbath announcer
|
||||
|
||||
|
|
Loading…
Reference in a new issue