1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-03 22:44:30 +00:00

Restore terminal colors in retail, except in __osMalloc.c (#1899)

This commit is contained in:
cadmic 2024-02-27 11:08:20 -08:00 committed by GitHub
parent dcf61174e9
commit 350b82c675
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 12 deletions

View file

@ -852,7 +852,11 @@ u32 __osCheckArena(Arena* arena) {
while (iter != NULL) {
if (iter && iter->magic == NODE_MAGIC) {
// "Oops!! (%08x %08x)"
#if OOT_DEBUG
osSyncPrintf(VT_COL(RED, WHITE) "おおっと!! (%08x %08x)\n" VT_RST, iter, iter->magic);
#else
osSyncPrintf("おおっと!! (%08x %08x)\n", iter, iter->magic);
#endif
error = 1;
break;
}