mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
It's 2013! Why can't I use C++11 yet!?
This commit is contained in:
parent
dea1e2827d
commit
b0630790c1
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ void OpenFStream(T& fstream, const std::string& filename, std::ios_base::openmod
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
fstream.open(UTF8ToTStr(filename).c_str(), openmode);
|
fstream.open(UTF8ToTStr(filename).c_str(), openmode);
|
||||||
#else
|
#else
|
||||||
fstream.open(filename, openmode);
|
fstream.open(filename.c_str(), openmode);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue