1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-12 09:50:50 +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

@ -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

View file

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

View file

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