From: chaoskagami Date: Thu, 9 Jun 2016 13:57:17 +0000 (-0400) Subject: Clean some remnants of a bygone era X-Git-Tag: v0.0.8~10 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=30f2582a72969a70bc25c788b4cbb1124d0443a1;p=corbenik%2Fcorbenik.git Clean some remnants of a bygone era --- diff --git a/source/patch/patch_file.h b/source/patch/patch_file.h index ae6f687..0b04b97 100644 --- a/source/patch/patch_file.h +++ b/source/patch/patch_file.h @@ -3,10 +3,6 @@ #include -// TODO - Temporary. -#define BUILTIN 1 - -#ifdef BUILTIN // Build patch into CFW instead of as module. #include "../std/unused.h" #include "../std/memory.h" @@ -16,21 +12,6 @@ #include "../common.h" #include "../interp.h" -exefs_h *get_firm_proc9_exefs(); -exefs_h *get_twl_proc9_exefs(); -exefs_h *get_agb_proc9_exefs(); - #define PATCH(name) int patch_##name() -#elif MODULE -// Build patch as loadable executable. - -// TODO - Includes. - -#define PATCH(name) int patch() -#else -#define PATCH(name) (void) - -// Don't build patch; Exclude its code. -#endif #endif