mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Attempt to fix Symbian build
This commit is contained in:
parent
7b3115e4de
commit
12e1cdbbae
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue