diff options
author | tron <tron@openttd.org> | 2005-10-17 19:57:00 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-10-17 19:57:00 +0000 |
commit | 23ecc82ad31b29dbf2adc3dd0f6f7550b3ac3e69 (patch) | |
tree | 55174ff380184f8b141b398364301899461e7fb6 /openttd.h | |
parent | b85da4fef2897039e198da97f524f1ca9c6bf913 (diff) | |
download | openttd-23ecc82ad31b29dbf2adc3dd0f6f7550b3ac3e69.tar.xz |
(svn r3055) Give the savegame/scenarion sort order flags symbolic names
Diffstat (limited to 'openttd.h')
-rw-r--r-- | openttd.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -523,6 +523,13 @@ enum SpecialStrings { typedef void PlaceProc(TileIndex tile); +enum { + SORT_ASCENDING = 0, + SORT_DESCENDING = 1, + SORT_BY_DATE = 0, + SORT_BY_NAME = 2 +}; + VARDEF byte _savegame_sort_order; #define INVALID_UINT_TILE (uint)0xFFFFFFFF |