mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-09 21:00:36 +00:00
fixed CText to be 64 bit compatible
This commit is contained in:
parent
0c23166318
commit
b21f49ad6b
2 changed files with 24 additions and 0 deletions
|
@ -9,7 +9,11 @@ void TextCopy(wchar *dst, const wchar *src);
|
|||
|
||||
struct CKeyEntry
|
||||
{
|
||||
#ifdef FIX_BUGS
|
||||
uint32 valueOffset;
|
||||
#else
|
||||
wchar *value;
|
||||
#endif
|
||||
char key[8];
|
||||
};
|
||||
|
||||
|
@ -28,7 +32,11 @@ public:
|
|||
void Unload(void);
|
||||
void Update(wchar *chars);
|
||||
CKeyEntry *BinarySearch(const char *key, CKeyEntry *entries, int16 low, int16 high);
|
||||
#ifdef FIX_BUGS
|
||||
wchar *Search(const char *key, wchar *data);
|
||||
#else
|
||||
wchar *Search(const char *key);
|
||||
#endif
|
||||
};
|
||||
|
||||
class CData
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue