Browse Source

Update DefaultIOSystem.cpp

Kim Kulling 4 năm trước cách đây
mục cha
commit
f8dd3a9aa6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      code/Common/DefaultIOSystem.cpp

+ 1 - 1
code/Common/DefaultIOSystem.cpp

@@ -122,7 +122,7 @@ IOStream *DefaultIOSystem::Open(const char *strFile, const char *strMode) {
         return nullptr;
     }
     
-    file = ::_wfopen(, Utf8ToWide(strMode).c_str());
+    file = ::_wfopen(name.c_str(), Utf8ToWide(strMode).c_str());
 #else
     file = ::fopen(strFile, strMode);
 #endif