diff options
author | tron <tron@openttd.org> | 2005-10-07 07:35:15 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-10-07 07:35:15 +0000 |
commit | 3397e202c82cda0398ef4a642e74f2d864c5dc7d (patch) | |
tree | 75058b5a9db24d07229edde45f993401aec6bd63 /signs.h | |
parent | 2b44da199c7bb6aae62a7e6aaae7775a07d16bdd (diff) | |
download | openttd-3397e202c82cda0398ef4a642e74f2d864c5dc7d.tar.xz |
(svn r3024) -Codechange: Another batch of replacements of int/uint/int16/byte/-1 with proper types and constants
Diffstat (limited to 'signs.h')
-rw-r--r-- | signs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ typedef struct SignStruct { int32 x; int32 y; byte z; - byte owner; // placed by this player. Anyone can delete them though. + PlayerID owner; // placed by this player. Anyone can delete them though. // OWNER_NONE for gray signs from old games. uint16 index; |