From 989a7c689f0f9766c5e27795b6f7e4a0b9118d08 Mon Sep 17 00:00:00 2001 From: Sabian Roberts <31491602+sabianroberts@users.noreply.github.com> Date: Mon, 20 Nov 2023 09:16:38 +0000 Subject: [PATCH] Restore screen width to original --- cl_dll/hud.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cl_dll/hud.cpp b/cl_dll/hud.cpp index b24817b7..c90d7cb3 100644 --- a/cl_dll/hud.cpp +++ b/cl_dll/hud.cpp @@ -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 )