summaryrefslogtreecommitdiff
path: root/src/window.h
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2007-02-10 14:22:11 +0000
committerbjarni <bjarni@openttd.org>2007-02-10 14:22:11 +0000
commite133a523c1e38f09e593dda7fcaebd1ba13ee5d1 (patch)
treeec6fc0cb5ebc17d4f2e932df57e6c50e584876c1 /src/window.h
parent0c8078ae29c2ac5f03d295aebf273150224cb55e (diff)
downloadopenttd-e133a523c1e38f09e593dda7fcaebd1ba13ee5d1.tar.xz
(svn r8662) -Fix r8661: don't try to put negative values in unsigned vars
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h
index aa1c3b1c0..b671271e5 100644
--- a/src/window.h
+++ b/src/window.h
@@ -73,7 +73,7 @@ typedef struct Widget {
byte type; ///< Widget type, see @WindowWidgetTypes
byte display_flags; ///< Resize direction, alignment, etc. during resizing, see @ResizeFlags
byte color; ///< Widget colour, see docs/ottd-colourtext-palette.png
- uint16 left, right, top, bottom; ///< The position offsets inside the window
+ int16 left, right, top, bottom; ///< The position offsets inside the window
uint16 data; ///< The String/Image or special code (list-matrixes) of a widget
StringID tooltips; ///< Tooltips that are shown when rightclicking on a widget
} Widget;