From 83bbdf7583e9bfb00045e527e1527d339d1dd4f4 Mon Sep 17 00:00:00 2001 From: engineer124 <47598039+engineer124@users.noreply.github.com> Date: Mon, 21 Oct 2024 02:56:55 +1100 Subject: [PATCH] build creator (#1726) --- include/build.h | 2 +- src/boot/CIC6105.c | 2 +- src/boot/build.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/build.h b/include/build.h index 5099e5d3c5..fa86f5ceed 100644 --- a/include/build.h +++ b/include/build.h @@ -1,7 +1,7 @@ #ifndef BUILD_H #define BUILD_H -extern char gBuildTeam[]; +extern char gBuildCreator[]; extern char gBuildDate[]; extern char gBuildMakeOption[]; diff --git a/src/boot/CIC6105.c b/src/boot/CIC6105.c index 6d21643ab4..8f9da87113 100644 --- a/src/boot/CIC6105.c +++ b/src/boot/CIC6105.c @@ -16,7 +16,7 @@ void CIC6105_Noop2(void) { void CIC6105_PrintRomInfo(void) { FaultDrawer_DrawText(80, 200, "SP_STATUS %08x", IO_READ(SP_STATUS_REG)); - FaultDrawer_DrawText(40, 184, "ROM_F [Creator:%s]", gBuildTeam); + FaultDrawer_DrawText(40, 184, "ROM_F [Creator:%s]", gBuildCreator); FaultDrawer_DrawText(56, 192, "[Date:%s]", gBuildDate); } diff --git a/src/boot/build.c b/src/boot/build.c index 23bd1cd592..31bb340164 100644 --- a/src/boot/build.c +++ b/src/boot/build.c @@ -1,3 +1,3 @@ -const char gBuildTeam[] = "zelda@srd44"; +const char gBuildCreator[] = "zelda@srd44"; const char gBuildDate[] = "00-07-31 17:04:16"; const char gBuildMakeOption[] = "";