mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15: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 "Log.h"
|
||||||
|
#include "utils/StringUtil.h"
|
||||||
|
|
||||||
void Log::init()
|
void Log::init()
|
||||||
{
|
{
|
||||||
|
@ -19,7 +20,7 @@ void Log::init()
|
||||||
void Log::open()
|
void Log::open()
|
||||||
{
|
{
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
file.open(Utils::String::stringToWideString(getLogPath()).c_str());
|
sFile.open(Utils::String::stringToWideString(getLogPath()).c_str());
|
||||||
#else
|
#else
|
||||||
sFile.open(getLogPath().c_str());
|
sFile.open(getLogPath().c_str());
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue