summaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-10-09 06:48:53 -0700
committerGitHub <noreply@github.com>2024-10-09 09:48:53 -0400
commit60f9607569249813d508ec70ef501db6d46682ea (patch)
tree72188e6a24f6f90c74d3d265ff936c7f7c08263f /src/boot
parentd3bf8ae78b36e4f81fa3c2f90e97ce067f61d12e (diff)
[ntsc-1.0/1.1] Match "system" files (#2254)
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/cic6105.c4
-rw-r--r--src/boot/is_debug.c5
2 files changed, 9 insertions, 0 deletions
diff --git a/src/boot/cic6105.c b/src/boot/cic6105.c
index e0ddcb2c4..85ae47b0c 100644
--- a/src/boot/cic6105.c
+++ b/src/boot/cic6105.c
@@ -39,7 +39,11 @@ void CIC6105_FaultClient(void) {
Fault_Printf(" [Creator:%s]", gBuildCreator);
Fault_SetCursor(56, 192);
Fault_Printf("[Date:%s]", gBuildDate);
+#if OOT_VERSION < PAL_1_0
+ Fault_SetCursor(128, 24);
+#else
Fault_SetCursor(96, 32);
+#endif
Fault_Printf("I LOVE YOU %08x", func_80001714());
}
diff --git a/src/boot/is_debug.c b/src/boot/is_debug.c
index dc2cedc4b..44d22fa87 100644
--- a/src/boot/is_debug.c
+++ b/src/boot/is_debug.c
@@ -48,6 +48,11 @@ void rmonPrintf(const char* fmt, ...) {
va_end(args);
}
+#if OOT_VERSION < PAL_1_0
+void func_800015F4(void) {
+}
+#endif
+
#if OOT_DEBUG
void* is_proutSyncPrintf(void* arg, const char* str, size_t count) {
u32 data;