mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-25 12:13:44 +00:00
Fix clock
This commit is contained in:
parent
800ab92960
commit
e1286fcb04
2 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ wchar CHud::m_Message[256];
|
|||
wchar CHud::m_PagerMessage[256];
|
||||
bool CHud::m_Wants_To_Draw_Hud;
|
||||
bool CHud::m_Wants_To_Draw_3dMarkers;
|
||||
wchar CHud::m_BigMessage[6][128];
|
||||
wchar CHud::m_BigMessage[8][128];
|
||||
int16 CHud::m_ItemToFlash;
|
||||
bool CHud::m_HideRadar;
|
||||
int32 CHud::m_ClockState;
|
||||
|
@ -2022,7 +2022,7 @@ void CHud::ReInitialise() {
|
|||
m_LastWeapon = 0;
|
||||
}
|
||||
|
||||
wchar LastBigMessage[6][128];
|
||||
wchar LastBigMessage[8][128];
|
||||
|
||||
void CHud::SetBigMessage(wchar *message, uint16 style)
|
||||
{
|
||||
|
|
|
@ -84,7 +84,7 @@ public:
|
|||
static wchar m_PagerMessage[256];
|
||||
static bool m_Wants_To_Draw_Hud;
|
||||
static bool m_Wants_To_Draw_3dMarkers;
|
||||
static wchar m_BigMessage[6][128];
|
||||
static wchar m_BigMessage[8][128];
|
||||
static int16 m_ItemToFlash;
|
||||
static bool m_HideRadar;
|
||||
static int32 m_ClockState;
|
||||
|
|
Loading…
Reference in a new issue