diff options
| author | Yanis002 <35189056+Yanis002@users.noreply.github.com> | 2025-06-28 18:56:44 +0200 |
|---|---|---|
| committer | Yanis002 <35189056+Yanis002@users.noreply.github.com> | 2025-06-28 18:56:44 +0200 |
| commit | 1c9bf116969f08fbca76f1b8630f17f683519c7f (patch) | |
| tree | cf6a9423f174813c0990e0cb93d2cb04f30ae88b | |
| parent | 53cc55fb20d3526dd9181781216a341df5e53f63 (diff) | |
comments
| -rw-r--r-- | src/Main/Unknown/UnkStruct_02063220.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Main/Unknown/UnkStruct_02063220.cpp b/src/Main/Unknown/UnkStruct_02063220.cpp index f1edc32a..b61fc49c 100644 --- a/src/Main/Unknown/UnkStruct_02063220.cpp +++ b/src/Main/Unknown/UnkStruct_02063220.cpp @@ -77,16 +77,25 @@ THUMB unk32 UnkStruct_02063220::func_0202f400(unk32 param1) { THUMB void UnkStruct_02063220::DisplayAssertError(char *file, u16 line, char *msg, ...) { va_list args; + // reset screen data data_0206322c.func_020304a8(true, true); + + // "draw" strings to the screen array DisplayDebugText(0, 0, false, true, "Assert", 0); DisplayDebugTextF(0, 2, false, true, "FILE:%s", file); DisplayDebugTextF(0, 3, false, true, "LINE:%d", line); va_start(args, msg); DisplayDebugTextFormat(0, 0, 5, false, true, msg, args); va_end(args); + + // unknown but other "draw" stuff func_0202f374(); func_0202d164(); + + // "draw" last file this->func_0202f4b4(); + + // actual draw of the screen this->func_0202f754(0); } |
