diff options
author | glx <glx@openttd.org> | 2007-09-24 19:55:50 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-09-24 19:55:50 +0000 |
commit | 54fe17050b3ff0f5a0afe54d463224f04e39cb3b (patch) | |
tree | a04b6e7ff5653ee16933b165bd9e8ed732e52804 | |
parent | 2408a68910ff39d78068abce218c9621bdcc618a (diff) | |
download | openttd-54fe17050b3ff0f5a0afe54d463224f04e39cb3b.tar.xz |
(svn r11156) -Fix r11155: fix one compiler makes the other warn ;)
-rw-r--r-- | src/fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp index 140c9b2a7..14c6401d3 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -297,7 +297,7 @@ FILE *FioFOpenFileSp(const char *filename, const char *mode, Searchpath sp, Subd } #if defined(WIN32) - if (GetFileAttributes(OTTD2FS(buf)) == -1) return NULL; + if (GetFileAttributes(OTTD2FS(buf)) == INVALID_FILE_ATTRIBUTES) return NULL; #endif f = fopen(buf, mode); |