summaryrefslogtreecommitdiff
path: root/src/settings_type.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2015-02-12 20:00:23 +0000
committerfrosch <frosch@openttd.org>2015-02-12 20:00:23 +0000
commit2f7de4fd99d1ccec63c54439bc01b1090aaa0b6e (patch)
tree3b1aa7ab13239238a8331cdcea66165b8cfc814d /src/settings_type.h
parent853e96e67b9708e04a87e5eeab34cca9541b3b7d (diff)
downloadopenttd-2f7de4fd99d1ccec63c54439bc01b1090aaa0b6e.tar.xz
(svn r27144) -Change: The chatbox-width setting now uses percent of screen width instead of pixels.
Diffstat (limited to 'src/settings_type.h')
-rw-r--r--src/settings_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings_type.h b/src/settings_type.h
index 9ea98caea..41366a771 100644
--- a/src/settings_type.h
+++ b/src/settings_type.h
@@ -144,7 +144,7 @@ struct GUISettings {
uint8 station_gui_sort_by; ///< sort cargo entries in the station gui by station name or amount
uint8 station_gui_sort_order; ///< the sort order of entries in the station gui - ascending or descending
#ifdef ENABLE_NETWORK
- uint16 network_chat_box_width; ///< width of the chat box in pixels
+ uint16 network_chat_box_width_pct; ///< width of the chat box in percent
uint8 network_chat_box_height; ///< height of the chat box in lines
uint16 network_chat_timeout; ///< timeout of chat messages in seconds
#endif