summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-06 18:30:45 +0000
committertron <tron@openttd.org>2005-02-06 18:30:45 +0000
commit2fb453a4a59be2fe29492704a1e45ea93cd7307e (patch)
treebd9ddff4e0a96d3d0b9feb95bcb7667184e63060 /window.h
parenteb28e8b32215aae0eef25a9ccada832955b34191 (diff)
downloadopenttd-2fb453a4a59be2fe29492704a1e45ea93cd7307e.tar.xz
(svn r1827) Next iteration of the byte -> char transition: some string drawing functions and buffers
Diffstat (limited to 'window.h')
-rw-r--r--window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.h b/window.h
index c3d7f9494..0bfec56d7 100644
--- a/window.h
+++ b/window.h
@@ -91,7 +91,7 @@ union WindowEvent {
struct {
byte event;
- byte *str;
+ char *str;
} edittext;
struct {
@@ -228,7 +228,7 @@ typedef struct {
WindowClass wnd_class;
WindowNumber wnd_num;
uint16 maxlen, maxwidth;
- byte *buf;
+ char *buf;
} querystr_d;
#define WP(ptr,str) (*(str*)(ptr)->custom)