summaryrefslogtreecommitdiff
path: root/src/settings_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-08-12 12:23:05 +0000
committerrubidium <rubidium@openttd.org>2008-08-12 12:23:05 +0000
commit72c154fd0fcd0c0c0c1a239b1cefcf0b07d1a9ff (patch)
treefd02531eb6ab2c4a59498e3f8592ccd17eff3e37 /src/settings_type.h
parenta3910ced70d574d4730268a4df6c5411cad7a04a (diff)
downloadopenttd-72c154fd0fcd0c0c0c1a239b1cefcf0b07d1a9ff.tar.xz
(svn r14052) -Codechange: make the size of the chat message "box" configurable and increase the default size slightly so it can hold the longest chat messages.
Diffstat (limited to 'src/settings_type.h')
-rw-r--r--src/settings_type.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/settings_type.h b/src/settings_type.h
index c7341cd5a..833d37520 100644
--- a/src/settings_type.h
+++ b/src/settings_type.h
@@ -82,6 +82,10 @@ struct GUISettings {
bool show_track_reservation; ///< highlight reserved tracks.
uint8 default_signal_type; ///< the signal type to build by default.
uint8 cycle_signal_types; ///< what signal types to cycle with the build signal tool.
+#ifdef ENABLE_NETWORK
+ uint16 network_chat_box_width; ///< width of the chat box in pixels
+ uint8 network_chat_box_height; ///< height of the chat box in lines
+#endif
};
/** Settings related to currency/unit systems. */