mirror of
https://github.com/halpz/re3.git
synced 2025-07-21 17:19:42 +00:00
More refs removed
This commit is contained in:
@ -12,9 +12,9 @@
|
||||
|
||||
#include "ControllerConfig.h"
|
||||
|
||||
tMessage(&CMessages::BriefMessages)[NUMBRIEFMESSAGES] = *(tMessage(*)[NUMBRIEFMESSAGES])*(uintptr*)0x8786E0;
|
||||
tPreviousBrief(&CMessages::PreviousBriefs)[NUMPREVIOUSBRIEFS] = *(tPreviousBrief(*)[NUMPREVIOUSBRIEFS])*(uintptr*)0x713C08;
|
||||
tBigMessage(&CMessages::BIGMessages)[NUMBIGMESSAGES] = *(tBigMessage(*)[NUMBIGMESSAGES])*(uintptr*)0x773628;
|
||||
tMessage CMessages::BriefMessages[NUMBRIEFMESSAGES];// = *(tMessage(*)[NUMBRIEFMESSAGES]) * (uintptr*)0x8786E0;
|
||||
tPreviousBrief CMessages::PreviousBriefs[NUMPREVIOUSBRIEFS];// = *(tPreviousBrief(*)[NUMPREVIOUSBRIEFS]) * (uintptr*)0x713C08;
|
||||
tBigMessage CMessages::BIGMessages[NUMBIGMESSAGES];// = *(tBigMessage(*)[NUMBIGMESSAGES]) * (uintptr*)0x773628;
|
||||
char CMessages::PreviousMissionTitle[16]; // unused
|
||||
|
||||
void
|
||||
|
@ -29,9 +29,9 @@ struct tPreviousBrief
|
||||
class CMessages
|
||||
{
|
||||
public:
|
||||
static tMessage(&BriefMessages)[NUMBRIEFMESSAGES];
|
||||
static tBigMessage(&BIGMessages)[NUMBIGMESSAGES];
|
||||
static tPreviousBrief(&PreviousBriefs)[NUMPREVIOUSBRIEFS];
|
||||
static tMessage BriefMessages[NUMBRIEFMESSAGES];
|
||||
static tBigMessage BIGMessages[NUMBIGMESSAGES];
|
||||
static tPreviousBrief PreviousBriefs[NUMPREVIOUSBRIEFS];
|
||||
static char PreviousMissionTitle[16]; // unused
|
||||
public:
|
||||
static void Init(void);
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
static wchar WideErrorString[25];
|
||||
|
||||
CText &TheText = *(CText*)0x941520;
|
||||
CText TheText;// = *(CText*)0x941520;
|
||||
|
||||
CText::CText(void)
|
||||
{
|
||||
|
@ -56,4 +56,4 @@ public:
|
||||
void UpperCase(wchar *s);
|
||||
};
|
||||
|
||||
extern CText &TheText;
|
||||
extern CText TheText;
|
||||
|
Reference in New Issue
Block a user