aboutsummaryrefslogtreecommitdiffstats
path: root/src/text/Text.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-16 12:51:54 +0200
committeraap <aap@papnet.eu>2020-05-16 12:51:54 +0200
commitb21f49ad6b2c3f7a22690254321776a0b15c2fed (patch)
treeb422839344fb330be63fbb204a65b2ecc8ea004d /src/text/Text.h
parent0c231663188ff4b639549c1be3c6f08df9a5afe1 (diff)
fixed CText to be 64 bit compatible
Diffstat (limited to 'src/text/Text.h')
-rw-r--r--src/text/Text.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/text/Text.h b/src/text/Text.h
index 4255e2a5..18a904bc 100644
--- a/src/text/Text.h
+++ b/src/text/Text.h
@@ -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