src/fios.h
changeset 10770 c1e1fb4bd561
parent 10307 624bb10b4ca8
child 10808 d42b140d24f2
--- a/src/fios.h	Thu May 29 07:34:40 2008 +0000
+++ b/src/fios.h	Thu May 29 09:54:47 2008 +0000
@@ -72,11 +72,19 @@
 	char title[255];      ///< internal name of the game
 };
 
+enum {
+	SORT_ASCENDING  = 0,
+	SORT_DESCENDING = 1,
+	SORT_BY_DATE    = 0,
+	SORT_BY_NAME    = 2
+};
+
 /* Variables to display file lists */
 extern FiosItem *_fios_list; ///< defined in misc_gui.cpp
 extern int _fios_num;        ///< defined in fios.cpp, read_only version of _fios_count
 extern SmallFiosItem _file_to_saveload;
 extern SaveLoadDialogMode _saveload_mode;   ///< defined in misc_gui.cpp
+extern byte _savegame_sort_order;
 
 /* Launch save/load dialog */
 void ShowSaveLoadDialog(SaveLoadDialogMode mode);