aboutsummaryrefslogtreecommitdiff
path: root/source/Irrlicht/CWriteFile.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-08-30 20:44:51 +0200
committersfan5 <sfan5@live.de>2021-08-30 20:55:06 +0200
commit75b4c05741e4cb42a0705341b2b696aa0e9a73c0 (patch)
treec309e5aa6e3c5ef940745e53d9c7b13b4d389912 /source/Irrlicht/CWriteFile.cpp
parent2dc2846c3f8ec461c95e3b5e4f8e672f08eb31b5 (diff)
downloadirrlicht-75b4c05741e4cb42a0705341b2b696aa0e9a73c0.tar.xz
Drop _IRR_WCHAR_FILESYSTEM
never used and never worked for us.
Diffstat (limited to 'source/Irrlicht/CWriteFile.cpp')
-rw-r--r--source/Irrlicht/CWriteFile.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/Irrlicht/CWriteFile.cpp b/source/Irrlicht/CWriteFile.cpp
index ef816b6..3279402 100644
--- a/source/Irrlicht/CWriteFile.cpp
+++ b/source/Irrlicht/CWriteFile.cpp
@@ -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)
{