Revert 2408a68910: Remove work around for an MSVC bug from 17 years ago. (#12557)

master
Peter Nelson 1 month ago committed by GitHub
parent bef11941c6
commit ac6a945e26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -212,10 +212,6 @@ static FILE *FioFOpenFileSp(const std::string &filename, const char *mode, Searc
buf = _searchpaths[sp] + _subdirs[subdir] + filename;
}
#if defined(_WIN32)
if (mode[0] == 'r' && GetFileAttributes(OTTD2FS(buf).c_str()) == INVALID_FILE_ATTRIBUTES) return nullptr;
#endif
f = fopen(buf.c_str(), mode);
#if !defined(_WIN32)
if (f == nullptr && strtolower(buf, subdir == NO_DIRECTORY ? 0 : _searchpaths[sp].size() - 1) ) {

Loading…
Cancel
Save