Drop _IRR_WCHAR_FILESYSTEM

never used and never worked for us.
This commit is contained in:
sfan5
2021-08-30 20:44:51 +02:00
parent 2dc2846c3f
commit 75b4c05741
7 changed files with 0 additions and 105 deletions

View File

@ -81,11 +81,7 @@ void CWriteFile::openFile(bool append)
return;
}
#if defined(_IRR_WCHAR_FILESYSTEM)
File = _wfopen(Filename.c_str(), append ? L"ab" : L"wb");
#else
File = fopen(Filename.c_str(), append ? "ab" : "wb");
#endif
if (File)
{