summaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2024-08-28 20:01:41 +0200
committerGitHub <noreply@github.com>2024-08-28 14:01:41 -0400
commit16ec9b1e13abca7ef2a978bd1b99935f2dd3b2ab (patch)
treeb81baa5deb652e6a45b81dff3288a37d180c90ea /src/boot
parent7592bf1e42a888c0a1974b019b18a13c520727ee (diff)
T() macro 7 (#2102)
* T() macro in most of the rest of code (except z_message, z_actor, ucode_disas, gfxprint, game, fault, db_camera) * remaining T() macro in boot * format * review
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/logutils.c11
-rw-r--r--src/boot/stackcheck.c8
2 files changed, 14 insertions, 5 deletions
diff --git a/src/boot/logutils.c b/src/boot/logutils.c
index a501a32bc..aa6731313 100644
--- a/src/boot/logutils.c
+++ b/src/boot/logutils.c
@@ -84,19 +84,24 @@ void LogUtils_CheckBoundary(const char* name, s32 value, s32 unk, const char* fi
u32 mask = (unk - 1);
if (value & mask) {
- PRINTF(VT_COL(RED, WHITE) "%s %d:%s(%08x) は バウンダリ(%d)違反です\n" VT_RST, file, line, name, value, unk);
+ PRINTF(VT_COL(RED, WHITE) T("%s %d:%s(%08x) は バウンダリ(%d)違反です\n",
+ "%s %d:%s(%08x) is a boundary (%d) violation\n") VT_RST,
+ file, line, name, value, unk);
}
}
void LogUtils_CheckNullPointer(const char* exp, void* ptr, const char* file, int line) {
if (ptr == NULL) {
- PRINTF(VT_COL(RED, WHITE) "%s %d:%s は はヌルポインタです\n" VT_RST, file, line, exp);
+ PRINTF(VT_COL(RED, WHITE) T("%s %d:%s は はヌルポインタです\n", "%s %d:%s is a null pointer\n") VT_RST, file,
+ line, exp);
}
}
void LogUtils_CheckValidPointer(const char* exp, void* ptr, const char* file, int line) {
if (ptr == NULL || (u32)ptr < 0x80000000 || (0x80000000 + osMemSize) <= (u32)ptr) {
- PRINTF(VT_COL(RED, WHITE) "%s %d:ポインタ %s(%08x) が異常です\n" VT_RST, file, line, exp, ptr);
+ PRINTF(VT_COL(RED, WHITE) T("%s %d:ポインタ %s(%08x) が異常です\n", "%s %d: Pointer %s(%08x) is invalid\n")
+ VT_RST,
+ file, line, exp, ptr);
}
}
diff --git a/src/boot/stackcheck.c b/src/boot/stackcheck.c
index aa0972d2f..e33ec5b19 100644
--- a/src/boot/stackcheck.c
+++ b/src/boot/stackcheck.c
@@ -20,7 +20,9 @@ void StackCheck_Init(StackEntry* entry, void* stackBottom, void* stackTop, u32 i
iter = sStackInfoListStart;
while (iter) {
if (iter == entry) {
- PRINTF(VT_COL(RED, WHITE) "stackcheck_init: %08x は既にリスト中にある\n" VT_RST, entry);
+ PRINTF(VT_COL(RED, WHITE) T("stackcheck_init: %08x は既にリスト中にある\n",
+ "stackcheck_init: %08x is already in the list\n") VT_RST,
+ entry);
return;
}
iter = iter->next;
@@ -68,7 +70,9 @@ void StackCheck_Cleanup(StackEntry* entry) {
}
}
if (inconsistency) {
- PRINTF(VT_COL(RED, WHITE) "stackcheck_cleanup: %08x リスト不整合です\n" VT_RST, entry);
+ PRINTF(VT_COL(RED, WHITE) T("stackcheck_cleanup: %08x リスト不整合です\n",
+ "stackcheck_cleanup: %08x list inconsistent\n") VT_RST,
+ entry);
}
}