diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2024-10-21 02:56:55 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-20 12:56:55 -0300 |
| commit | 83bbdf7583e9bfb00045e527e1527d339d1dd4f4 (patch) | |
| tree | 36f217266436a243ed1b598655a40271e554e248 | |
| parent | d03e8719e62900d5b917f5429177560bd044fddd (diff) | |
build creator (#1726)
| -rw-r--r-- | include/build.h | 2 | ||||
| -rw-r--r-- | src/boot/CIC6105.c | 2 | ||||
| -rw-r--r-- | src/boot/build.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/build.h b/include/build.h index 5099e5d3c..fa86f5cee 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 6d21643ab..8f9da8711 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 23bd1cd59..31bb34016 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[] = ""; |
