[saco] Match cmdHudScaleFix(...)

This commit is contained in:
RD42 2024-10-13 20:56:17 +08:00
parent 28d6559378
commit ded911ff3f

View File

@ -6,6 +6,7 @@ extern CCmdWindow *pCmdWindow;
extern CDeathWindow *pDeathWindow;
extern CNetGame *pNetGame;
extern GAME_SETTINGS tSettings;
extern CConfig *pConfig;
extern bool bShowDebugLabels;
extern bool bHudScaleFix;
@ -73,16 +74,17 @@ void cmdHudScaleFix(PCHAR szCmd)
if(bHudScaleFix)
{
bHudScaleFix = false;
// uncomment after finishing CConfig class
//CConfig::SetIntVariable(pConfig, "nohudscalefix", 1, 0);
pConfig->SetIntVariable("nohudscalefix", 1);
}
else
{
bHudScaleFix = 1;
//CConfig::SetIntVariable(pConfig, "nohudscalefix", 0, 0);
bHudScaleFix = true;
pConfig->SetIntVariable("nohudscalefix", 0);
}
}
//----------------------------------------------------
void cmdMem(PCHAR szCmd)
{
pChatWindow->AddDebugMessage("Memory: %u",*(DWORD *)0x8A5A80);