From b469c443e91c8ef65ddce61944338eba4287f337 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 26 Apr 2007 07:41:24 +0000 Subject: (svn r9719) -Fix: in-game private messages did not work for clients with a Client ID > 255. --- src/window.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/window.h') diff --git a/src/window.h b/src/window.h index 597c6e363..1f74df9b0 100644 --- a/src/window.h +++ b/src/window.h @@ -280,6 +280,11 @@ struct querystr_d { }; assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(querystr_d)); +struct chatquerystr_d : public querystr_d { + int dest; +}; +assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(chatquerystr_d)); + struct menu_d { byte item_count; ///< follow_vehicle byte sel_index; ///< scrollpos_x -- cgit v1.2.3-54-g00ecf