RE more stuff from COnscreenTimer

This commit is contained in:
Filip Gawin
2019-06-07 22:31:03 +02:00
parent c95f1ce2ce
commit ecd70a5f17
8 changed files with 232 additions and 11 deletions

View File

@ -2,5 +2,7 @@
#include "patcher.h"
#include "Hud.h"
bool &CHud::m_Wants_To_Draw_Hud = *(bool*)0x95CD89;
WRAPPER void CHud::Draw(void) { EAXJMP(0x5052A0); }
WRAPPER void CHud::DrawAfterFade(void) { EAXJMP(0x509030); }

View File

@ -5,4 +5,6 @@ class CHud
public:
static void Draw(void);
static void DrawAfterFade(void);
static bool &m_Wants_To_Draw_Hud;
};