summaryrefslogtreecommitdiff
path: root/src/code/fault_gc.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2025-01-10 04:03:51 -0800
committerGitHub <noreply@github.com>2025-01-10 07:03:51 -0500
commit8118370f4e47fbef1a4bea3fd4bce45adc25a902 (patch)
tree7894f2d7ba9d6c9d6f54b3ad2bf28b05a5f818c9 /src/code/fault_gc.c
parent94971a61b4eb0bf4d9437cb878263c96460aa5f9 (diff)
Only build .o files listed in the spec (#2410)
* Only build .o files listed in the spec * Remove useless CPP guards
Diffstat (limited to 'src/code/fault_gc.c')
-rw-r--r--src/code/fault_gc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/code/fault_gc.c b/src/code/fault_gc.c
index 9c0c35c78..5e0ce4c90 100644
--- a/src/code/fault_gc.c
+++ b/src/code/fault_gc.c
@@ -40,8 +40,6 @@
* DPad-Up may be pressed to enable sending fault pages over osSyncPrintf as well as displaying them on-screen.
* DPad-Down disables sending fault pages over osSyncPrintf.
*/
-#if !PLATFORM_N64
-
#pragma increment_block_number "gc-eu:160 gc-eu-mq:160 gc-eu-mq-dbg:160 gc-jp:176 gc-jp-ce:176 gc-jp-mq:176 gc-us:176" \
"gc-us-mq:176"
@@ -1340,5 +1338,3 @@ NORETURN void Fault_AddHungupAndCrash(const char* file, int line) {
sprintf(msg, "HungUp %s:%d", file, line);
Fault_AddHungupAndCrashImpl(msg, NULL);
}
-
-#endif