mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-29 00:06:33 +00:00
rename gBuildTeam to gBuildCreator (#2160)
This commit is contained in:
parent
fa39da2a57
commit
27533a1507
6 changed files with 8 additions and 8 deletions
|
@ -41,7 +41,7 @@ extern OSViContext* __osViCurr;
|
|||
extern OSViContext* __osViNext;
|
||||
extern OSViMode osViModeFpalLan1;
|
||||
extern u32 __additional_scanline;
|
||||
extern const char gBuildTeam[];
|
||||
extern const char gBuildCreator[];
|
||||
extern const char gBuildDate[];
|
||||
extern const char gBuildMakeOption[];
|
||||
extern OSMesgQueue gPiMgrCmdQueue;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#include "versions.h"
|
||||
|
||||
#if PLATFORM_N64
|
||||
const char gBuildTeam[] = "zelda@srd44";
|
||||
const char gBuildCreator[] = "zelda@srd44";
|
||||
#else
|
||||
const char gBuildTeam[] = "zelda@srd022j";
|
||||
const char gBuildCreator[] = "zelda@srd022j";
|
||||
#endif
|
||||
|
||||
#if OOT_VERSION == NTSC_1_2
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
s32 func_80001714(void);
|
||||
|
||||
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;
|
||||
|
@ -34,7 +34,7 @@ void CIC6105_FaultClient(void) {
|
|||
}
|
||||
Fault_SetCursor(40, 184);
|
||||
Fault_Printf("ROM_F");
|
||||
Fault_Printf(" [Creator:%s]", gBuildTeam);
|
||||
Fault_Printf(" [Creator:%s]", gBuildCreator);
|
||||
Fault_SetCursor(56, 192);
|
||||
Fault_Printf("[Date:%s]", gBuildDate);
|
||||
Fault_SetCursor(96, 32);
|
||||
|
|
|
@ -39,7 +39,7 @@ void Main_ThreadEntry(void* arg) {
|
|||
|
||||
void Idle_ThreadEntry(void* arg) {
|
||||
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("MAKEOPTION: %s\n", gBuildMakeOption);
|
||||
PRINTF(VT_FGCOL(GREEN));
|
||||
|
|
|
@ -30,7 +30,7 @@ void ConsoleLogo_PrintBuildInfo(Gfx** gfxP) {
|
|||
GfxPrint_Printf(printer, "NOT MARIO CLUB VERSION");
|
||||
GfxPrint_SetColor(printer, 255, 255, 255, 255);
|
||||
GfxPrint_SetPos(printer, 7, 23);
|
||||
GfxPrint_Printf(printer, "[Creator:%s]", gBuildTeam);
|
||||
GfxPrint_Printf(printer, "[Creator:%s]", gBuildCreator);
|
||||
GfxPrint_SetPos(printer, 7, 24);
|
||||
GfxPrint_Printf(printer, "[Date:%s]", gBuildDate);
|
||||
gfx = GfxPrint_Close(printer);
|
||||
|
|
|
@ -56,5 +56,5 @@ sGraphThread = 0x8011E2B8;
|
|||
rspbootTextStart = 0x800065C0;
|
||||
rspbootTextEnd = 0x80006720;
|
||||
cic6105TextStart = 0x80006720;
|
||||
gBuildTeam = 0x80006D30;
|
||||
gBuildCreator = 0x80006D30;
|
||||
gBuildDate = 0x80006D3C;
|
||||
|
|
Loading…
Reference in a new issue