mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-27 00:10:39 +00:00
[saco] Match cmdHudScaleFix(...)
This commit is contained in:
parent
28d6559378
commit
ded911ff3f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user