]> Chaos Git - corbenik/corbenik.git/commitdiff
Bugfix - system title dumping code had the wrong condition attached and therefore...
authorchaoskagami <chaos.kagami@gmail.com>
Sat, 2 Jul 2016 06:29:54 +0000 (02:29 -0400)
committerchaoskagami <chaos.kagami@gmail.com>
Sat, 2 Jul 2016 06:29:54 +0000 (02:29 -0400)
external/loader/source/patcher.c

index 68a9659a883b460e80f23bf885d957ef37b9d7b5..9a519ec700c67b54a372b2096dfa635c54687cc5 100644 (file)
@@ -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;