We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4067c commit e243085Copy full SHA for e243085
cl_dll/hud.cpp
@@ -358,10 +358,6 @@ void CHud :: Init( void )
358
m_SniperScope.Init();
359
m_NVG.Init();
360
361
- // Spectator GUI is not need in singleplayer czeror
362
- if( GetGameType() != GAME_CZERODS )
363
- m_SpectatorGui.Init();
364
-
365
// Game HUD things
366
m_Ammo.Init();
367
m_Health.Init();
@@ -389,6 +385,11 @@ void CHud :: Init( void )
389
385
// all things that have own background and must be drawn last
390
386
m_ProgressBar.Init();
391
387
m_Menu.Init();
388
+
+ // Spectator GUI is not need in singleplayer czeror
+ if( GetGameType() != GAME_CZERODS )
+ m_SpectatorGui.Init();
392
393
m_Scoreboard.Init();
394
395
GetClientVoice()->Init( &g_VoiceStatusHelper );
0 commit comments