bring back (translated) authentic logging #3628
Replies: 5 comments
-
we will need to make sure we handle pointers correctly, for example osSyncPrintf("RAMサイズは %d キロバイトです(osMemSize/osGetMemSize)\n", (s32)osMemSize / 1024); should become osSyncPrintf("RAMサイズは %p キロバイトです(osMemSize/osGetMemSize)\n", (intrptr_t)osMemSize / 1024); this means anytime there's a cast to |
Beta Was this translation helpful? Give feedback.
-
Here's that grep dump: os.txt |
Beta Was this translation helpful? Give feedback.
-
translation comments seem like a good resource for translating to me! |
Beta Was this translation helpful? Give feedback.
-
Also u32 -> uintptr_t as well! |
Beta Was this translation helpful? Give feedback.
-
this should be it's own issue |
Beta Was this translation helpful? Give feedback.
-
while discussing #1457 we decided it'd be good to utilize the authentic logging macros and bring back the authentic log statments
we'll need to:
grep -rni "osSyncPrintf(\"" .
(will update grep statement with a more perfect one later)Beta Was this translation helpful? Give feedback.
All reactions