From: chaoskagami Date: Sat, 2 Jul 2016 06:29:54 +0000 (-0400) Subject: Bugfix - system title dumping code had the wrong condition attached and therefore... X-Git-Tag: v0.2.0~36 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=6d877149d2ca85f4fc34d08e0a562a9378296aca;p=corbenik%2Fcorbenik.git Bugfix - system title dumping code had the wrong condition attached and therefore would dump even with it off --- diff --git a/external/loader/source/patcher.c b/external/loader/source/patcher.c index 68a9659..9a519ec 100644 --- a/external/loader/source/patcher.c +++ b/external/loader/source/patcher.c @@ -395,7 +395,7 @@ code_handler(u64 progId, prog_addrs_t *shared) u32 highTid = progId >> 0x20; - if ((highTid == 0x00040000 || highTid == 0x00040002) && !config.options[OPTION_LOADER_DUMPCODE_ALL]) + if (!(highTid == 0x00040000 || highTid == 0x00040002) && !config.options[OPTION_LOADER_DUMPCODE_ALL]) return; static char text_path[] = TEXT_PATH;