mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-11 08:39:48 +12:00
Cheats: Default to enabled + CTRPF
This commit is contained in:
parent
f922870785
commit
1c501aceef
1 changed files with 3 additions and 3 deletions
|
@ -17,8 +17,8 @@ class Cheats {
|
|||
};
|
||||
|
||||
struct Cheat {
|
||||
bool enabled;
|
||||
CheatType type;
|
||||
bool enabled = true;
|
||||
CheatType type = CheatType::ActionReplay;
|
||||
std::vector<u32> instructions;
|
||||
};
|
||||
|
||||
|
@ -37,4 +37,4 @@ class Cheats {
|
|||
ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes
|
||||
std::vector<Cheat> cheats;
|
||||
bool cheatsLoaded = false;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue