summaryrefslogtreecommitdiff
path: root/src/fileio_type.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2016-09-04 12:57:43 +0000
committeralberth <alberth@openttd.org>2016-09-04 12:57:43 +0000
commit597380e099688652e31fd1f406b53dee6b65da90 (patch)
treeac7bdedf8b7fd9d8f096465c3cbb1b41b40f1e78 /src/fileio_type.h
parentdf9a9f074a55a839a5f311e5c0837342192e720d (diff)
downloadopenttd-597380e099688652e31fd1f406b53dee6b65da90.tar.xz
(svn r27650) -Codechange: Replace SaveOrLoadMode by FileOperation and DetailedFileType.
Diffstat (limited to 'src/fileio_type.h')
-rw-r--r--src/fileio_type.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fileio_type.h b/src/fileio_type.h
index 4fae7b392..0c4602bba 100644
--- a/src/fileio_type.h
+++ b/src/fileio_type.h
@@ -47,8 +47,11 @@ enum DetailedFileType {
/** Operation performed on the file. */
enum FileOperation {
- FOP_LOAD, ///< File is being loaded.
- FOP_SAVE, ///< File is being saved.
+ FOP_CHECK, ///< Load file for checking and/or preview.
+ FOP_LOAD, ///< File is being loaded.
+ FOP_SAVE, ///< File is being saved.
+
+ FOP_INVALID, ///< Unknown file operation.
};
/**