diff --git a/Core/CwCheat.cpp b/Core/CwCheat.cpp index c7c6bed167..b8484062ca 100644 --- a/Core/CwCheat.cpp +++ b/Core/CwCheat.cpp @@ -41,10 +41,14 @@ static void __CheatStart() { File::CreateFullPath(GetSysDirectory(DIRECTORY_CHEATS)); if (!File::Exists(activeCheatFile)) { +#ifndef Symbian ofstream myCheatFile; myCheatFile.open(activeCheatFile); myCheatFile << "\xEF\xBB\xBF"; myCheatFile.close(); +#else + File::CreateEmptyFile(activeCheatFile); +#endif }