diff options
author | rubidium <rubidium@openttd.org> | 2006-08-14 17:08:45 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2006-08-14 17:08:45 +0000 |
commit | 0886ac3841a44832b3d32228a7d4798395a8fe83 (patch) | |
tree | b8bc73179ac9420913cc95aef19d5c38dc09f06f /openttd.h | |
parent | 4b82897e2532ec848a6d5bf5facd6e9ef903bfb1 (diff) | |
download | openttd-0886ac3841a44832b3d32228a7d4798395a8fe83.tar.xz |
(svn r5892) -Fix (r5887): silence MSVC warning(s) about signedness of some comparisons with _date.
Diffstat (limited to 'openttd.h')
-rw-r--r-- | openttd.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ typedef uint32 WindowNumber; typedef byte WindowClass; typedef uint8 Year; -typedef uint32 Date; +typedef uint16 Date; enum GameModes { |