mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
(Windows) Fixed a compiler error.
This commit is contained in:
parent
999b9a6c04
commit
a5e10a6434
|
@ -7,6 +7,7 @@
|
|||
//
|
||||
|
||||
#include "Log.h"
|
||||
#include "utils/StringUtil.h"
|
||||
|
||||
void Log::init()
|
||||
{
|
||||
|
@ -19,7 +20,7 @@ void Log::init()
|
|||
void Log::open()
|
||||
{
|
||||
#if defined(_WIN64)
|
||||
file.open(Utils::String::stringToWideString(getLogPath()).c_str());
|
||||
sFile.open(Utils::String::stringToWideString(getLogPath()).c_str());
|
||||
#else
|
||||
sFile.open(getLogPath().c_str());
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue