1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-06-08 17:41:56 +00:00

rename gBuildTeam to gBuildCreator (#2160)

This commit is contained in:
fig02 2024-09-07 16:02:01 -04:00 committed by GitHub
parent fa39da2a57
commit 27533a1507
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 8 additions and 8 deletions

View file

@ -41,7 +41,7 @@ extern OSViContext* __osViCurr;
extern OSViContext* __osViNext; extern OSViContext* __osViNext;
extern OSViMode osViModeFpalLan1; extern OSViMode osViModeFpalLan1;
extern u32 __additional_scanline; extern u32 __additional_scanline;
extern const char gBuildTeam[]; extern const char gBuildCreator[];
extern const char gBuildDate[]; extern const char gBuildDate[];
extern const char gBuildMakeOption[]; extern const char gBuildMakeOption[];
extern OSMesgQueue gPiMgrCmdQueue; extern OSMesgQueue gPiMgrCmdQueue;

View file

@ -1,9 +1,9 @@
#include "versions.h" #include "versions.h"
#if PLATFORM_N64 #if PLATFORM_N64
const char gBuildTeam[] = "zelda@srd44"; const char gBuildCreator[] = "zelda@srd44";
#else #else
const char gBuildTeam[] = "zelda@srd022j"; const char gBuildCreator[] = "zelda@srd022j";
#endif #endif
#if OOT_VERSION == NTSC_1_2 #if OOT_VERSION == NTSC_1_2

View file

@ -5,7 +5,7 @@
s32 func_80001714(void); s32 func_80001714(void);
OSTask D_800067C0_unknown = { OSTask D_800067C0_unknown = {
4, 0, rspbootTextStart, 0x3E8, cic6105TextStart, 0x20, (u64*)gBuildTeam, 8, NULL, 0, NULL, 0, NULL, 0, NULL, 0, 4, 0, rspbootTextStart, 0x3E8, cic6105TextStart, 0x20, (u64*)gBuildCreator, 8, NULL, 0, NULL, 0, NULL, 0, NULL, 0,
}; };
s32 B_80008EE0; s32 B_80008EE0;
@ -34,7 +34,7 @@ void CIC6105_FaultClient(void) {
} }
Fault_SetCursor(40, 184); Fault_SetCursor(40, 184);
Fault_Printf("ROM_F"); Fault_Printf("ROM_F");
Fault_Printf(" [Creator:%s]", gBuildTeam); Fault_Printf(" [Creator:%s]", gBuildCreator);
Fault_SetCursor(56, 192); Fault_SetCursor(56, 192);
Fault_Printf("[Date:%s]", gBuildDate); Fault_Printf("[Date:%s]", gBuildDate);
Fault_SetCursor(96, 32); Fault_SetCursor(96, 32);

View file

@ -39,7 +39,7 @@ void Main_ThreadEntry(void* arg) {
void Idle_ThreadEntry(void* arg) { void Idle_ThreadEntry(void* arg) {
PRINTF(T("アイドルスレッド(idleproc)実行開始\n", "Idle thread (idleproc) execution started\n")); PRINTF(T("アイドルスレッド(idleproc)実行開始\n", "Idle thread (idleproc) execution started\n"));
PRINTF(T("作製者 : %s\n", "Created by: %s\n"), gBuildTeam); PRINTF(T("作製者 : %s\n", "Created by: %s\n"), gBuildCreator);
PRINTF(T("作成日時 : %s\n", "Created : %s\n"), gBuildDate); PRINTF(T("作成日時 : %s\n", "Created : %s\n"), gBuildDate);
PRINTF("MAKEOPTION: %s\n", gBuildMakeOption); PRINTF("MAKEOPTION: %s\n", gBuildMakeOption);
PRINTF(VT_FGCOL(GREEN)); PRINTF(VT_FGCOL(GREEN));

View file

@ -30,7 +30,7 @@ void ConsoleLogo_PrintBuildInfo(Gfx** gfxP) {
GfxPrint_Printf(printer, "NOT MARIO CLUB VERSION"); GfxPrint_Printf(printer, "NOT MARIO CLUB VERSION");
GfxPrint_SetColor(printer, 255, 255, 255, 255); GfxPrint_SetColor(printer, 255, 255, 255, 255);
GfxPrint_SetPos(printer, 7, 23); GfxPrint_SetPos(printer, 7, 23);
GfxPrint_Printf(printer, "[Creator:%s]", gBuildTeam); GfxPrint_Printf(printer, "[Creator:%s]", gBuildCreator);
GfxPrint_SetPos(printer, 7, 24); GfxPrint_SetPos(printer, 7, 24);
GfxPrint_Printf(printer, "[Date:%s]", gBuildDate); GfxPrint_Printf(printer, "[Date:%s]", gBuildDate);
gfx = GfxPrint_Close(printer); gfx = GfxPrint_Close(printer);

View file

@ -56,5 +56,5 @@ sGraphThread = 0x8011E2B8;
rspbootTextStart = 0x800065C0; rspbootTextStart = 0x800065C0;
rspbootTextEnd = 0x80006720; rspbootTextEnd = 0x80006720;
cic6105TextStart = 0x80006720; cic6105TextStart = 0x80006720;
gBuildTeam = 0x80006D30; gBuildCreator = 0x80006D30;
gBuildDate = 0x80006D3C; gBuildDate = 0x80006D3C;