Skip to content

Commit

Permalink
Restore screen width to original
Browse files Browse the repository at this point in the history
  • Loading branch information
sabianroberts committed Nov 20, 2023
1 parent 1377153 commit 989a7c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cl_dll/hud.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -747,10 +747,10 @@ void CHud :: VidInit( void )
m_hsprLogo = 0;
m_hsprCursor = 0;

if (ScreenWidth < 2560)
m_iRes = 1280;
if (ScreenWidth < 640)
m_iRes = 320;
else
m_iRes = 2560;
m_iRes = 640;

// Only load this once
if ( !m_pSpriteList )
Expand Down

0 comments on commit 989a7c6

Please sign in to comment.