- fixed hud_scale for Shadow Warrior.

This commit is contained in:
Christoph Oelckers 2020-01-22 15:21:07 +01:00
parent 09106b3159
commit dcbb936a9b
4 changed files with 12 additions and 10 deletions

View file

@ -614,9 +614,14 @@ int RunGame()
if (g_gameType & GAMEFLAG_BLOOD)
{
mus_redbook.SetGenericRepDefault(false, CVAR_Bool); // Blood should default to CD Audio off - all other games must default to on.
hud_size.SetGenericRepDefault(6, CVAR_Int); // HUD is different for everything.
hud_size.SetGenericRepDefault(6, CVAR_Int);
hud_size_max = 7;
}
if (g_gameType & GAMEFLAG_SW)
{
hud_size.SetGenericRepDefault(8, CVAR_Int);
hud_size_max = 9;
}
G_ReadConfig(currentGame);