mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-01 15:50:27 +02:00
Drop _IRR_WCHAR_FILESYSTEM
never used and never worked for us.
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user