diff options
author | alberth <alberth@openttd.org> | 2016-09-04 12:54:30 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2016-09-04 12:54:30 +0000 |
commit | 95bb103a233c9986777897c0d8b26f6f7c1cf08f (patch) | |
tree | b3cd0327b26c3f7016d96a6b11d78f616a7b030a /src/os/unix | |
parent | caf33797463560617526cbb38eac5e8b77eda242 (diff) | |
download | openttd-95bb103a233c9986777897c0d8b26f6f7c1cf08f.tar.xz |
(svn r27643) -Codechange: FiosGetDrives function also takes a destination file list.
Diffstat (limited to 'src/os/unix')
-rw-r--r-- | src/os/unix/unix.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/unix/unix.cpp b/src/os/unix/unix.cpp index 24dedb2ee..d7c2304ce 100644 --- a/src/os/unix/unix.cpp +++ b/src/os/unix/unix.cpp @@ -16,6 +16,7 @@ #include "../../core/random_func.hpp" #include "../../debug.h" #include "../../string_func.h" +#include "../../fios.h" #include <dirent.h> @@ -77,7 +78,7 @@ bool FiosIsRoot(const char *path) #endif } -void FiosGetDrives() +void FiosGetDrives(FileList &file_list) { return; } |