Revert "Increase cheat file and opcode size maximum "

This reverts commit 59f86ce7fd.
This commit is contained in:
WerWolv 2019-06-08 13:15:14 +02:00
parent cca7089e34
commit 0c6a3cd97d
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ struct CheatProcessMetadata {
struct CheatDefinition { struct CheatDefinition {
char readable_name[0x40]; char readable_name[0x40];
uint32_t num_opcodes; uint32_t num_opcodes;
uint32_t opcodes[0x200]; uint32_t opcodes[0x100];
}; };
struct CheatEntry { struct CheatEntry {

View File

@ -29,7 +29,7 @@ static OverrideKey g_default_cheat_enable_key = {
}; };
/* Static buffer for loader.ini contents at runtime. */ /* Static buffer for loader.ini contents at runtime. */
static char g_config_ini_data[0xFFF]; static char g_config_ini_data[0x800];
static OverrideKey ParseOverrideKey(const char *value) { static OverrideKey ParseOverrideKey(const char *value) {
OverrideKey cfg; OverrideKey cfg;