From 1c501aceef28e306ca11f40a2513785e561f5bba Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:12:05 +0300 Subject: [PATCH] Cheats: Default to enabled + CTRPF --- include/cheats.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cheats.hpp b/include/cheats.hpp index 59e88e7a2..2be25827d 100644 --- a/include/cheats.hpp +++ b/include/cheats.hpp @@ -17,8 +17,8 @@ class Cheats { }; struct Cheat { - bool enabled; - CheatType type; + bool enabled = true; + CheatType type = CheatType::ActionReplay; std::vector instructions; }; @@ -37,4 +37,4 @@ class Cheats { ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes std::vector cheats; bool cheatsLoaded = false; -}; \ No newline at end of file +};