Skip to content

Commit

Permalink
Cheats: Default to enabled + CTRPF
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat authored Oct 26, 2023
1 parent a45f50a commit b9faabc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/cheats.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class Cheats {
};

struct Cheat {
bool enabled;
CheatType type;
bool enabled = true;
CheatType type = CheatType::ActionReplay;
std::vector<u32> instructions;
};

Expand All @@ -37,4 +37,4 @@ class Cheats {
ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes
std::vector<Cheat> cheats;
bool cheatsLoaded = false;
};
};

0 comments on commit b9faabc

Please sign in to comment.