From 2fb453a4a59be2fe29492704a1e45ea93cd7307e Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 6 Feb 2005 18:30:45 +0000 Subject: (svn r1827) Next iteration of the byte -> char transition: some string drawing functions and buffers --- roadveh_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roadveh_gui.c') diff --git a/roadveh_gui.c b/roadveh_gui.c index 4a8128d4e..d5b5d28da 100644 --- a/roadveh_gui.c +++ b/roadveh_gui.c @@ -160,7 +160,7 @@ change_int: break; case WE_ON_EDIT_TEXT: { - byte *b = e->edittext.str; + const char *b = e->edittext.str; if (*b == 0) return; memcpy(_decode_parameters, b, 32); @@ -431,7 +431,7 @@ static void NewRoadVehWndProc(Window *w, WindowEvent *e) break; case WE_ON_EDIT_TEXT: { - byte *b = e->edittext.str; + const char *b = e->edittext.str; if (*b == 0) return; memcpy(_decode_parameters, b, 32); -- cgit v1.2.3-54-g00ecf