summaryrefslogtreecommitdiff
path: root/src/fileio_type.h
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2020-12-06 21:11:43 +0100
committerMichael Lutz <michi@icosahedron.de>2020-12-27 13:19:25 +0100
commit0c6e8a8123c9f74db757272f73adcbd8621e012d (patch)
tree626d723efa78c770f26b442efe7b36d584afe826 /src/fileio_type.h
parentdd138fc460dcbab37452e90ff070a31516994aa2 (diff)
downloadopenttd-0c6e8a8123c9f74db757272f73adcbd8621e012d.tar.xz
Codechange: Store file search paths as std::string.
Diffstat (limited to 'src/fileio_type.h')
-rw-r--r--src/fileio_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio_type.h b/src/fileio_type.h
index 15f886d05..62147f9e6 100644
--- a/src/fileio_type.h
+++ b/src/fileio_type.h
@@ -128,7 +128,7 @@ enum Subdirectory {
/**
* Types of searchpaths OpenTTD might use
*/
-enum Searchpath {
+enum Searchpath : unsigned {
SP_FIRST_DIR,
SP_WORKING_DIR = SP_FIRST_DIR, ///< Search in the working directory
#if defined(WITH_XDG_BASEDIR) && defined(WITH_PERSONAL_DIR)