summaryrefslogtreecommitdiff
path: root/src/fios.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2016-09-04 12:45:11 +0000
committeralberth <alberth@openttd.org>2016-09-04 12:45:11 +0000
commitd6812947f3b793302dc1ad42a07767ab831e66e3 (patch)
tree56533789c058610b67ecf76e2651c79ac4a6d0dc /src/fios.h
parenta52864ef27729b3d8458d003a999de4655d59341 (diff)
downloadopenttd-d6812947f3b793302dc1ad42a07767ab831e66e3.tar.xz
(svn r27634) -Codechange: Improve name of the SmallFiosItem struct.
Diffstat (limited to 'src/fios.h')
-rw-r--r--src/fios.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fios.h b/src/fios.h
index b9bf390bb..f25d5a7e2 100644
--- a/src/fios.h
+++ b/src/fios.h
@@ -138,7 +138,7 @@ struct FiosItem {
};
/** Deals with the type of the savegame, independent of extension */
-struct SmallFiosItem {
+struct FileToSaveLoad {
int mode; ///< savegame/scenario type (old, new)
FileType filetype; ///< what type of file are we dealing with
char name[MAX_PATH]; ///< name
@@ -155,7 +155,7 @@ DECLARE_ENUM_AS_BIT_SET(SortingBits)
/* Variables to display file lists */
extern SmallVector<FiosItem, 32> _fios_items;
-extern SmallFiosItem _file_to_saveload;
+extern FileToSaveLoad _file_to_saveload;
extern SaveLoadDialogMode _saveload_mode;
extern SortingBits _savegame_sort_order;