build creator (#1726)

This commit is contained in:
engineer124 2024-10-21 02:56:55 +11:00 committed by GitHub
parent d03e8719e6
commit 83bbdf7583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#ifndef BUILD_H
#define BUILD_H
extern char gBuildTeam[];
extern char gBuildCreator[];
extern char gBuildDate[];
extern char gBuildMakeOption[];

View File

@ -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);
}

View File

@ -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[] = "";