mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-01 02:11:44 -04:00
Merge pull request #286 from TwilitRealm/fix/282
Fix Crash at the end of the Armogohma cutscene #282
This commit is contained in:
@@ -813,9 +813,15 @@ s32 JASSeqParser::cmdDump(JASTrack* param_0, u32* param_1) {
|
||||
}
|
||||
|
||||
s32 JASSeqParser::cmdPrintf(JASTrack* param_0, u32* param_1) {
|
||||
#if AVOID_UB
|
||||
u8 stack_c[4] = {0};
|
||||
u32 stack_10[4] = {0};
|
||||
char buffer[128] = {0};
|
||||
#else
|
||||
u8 stack_c[4];
|
||||
u32 stack_10[4];
|
||||
char buffer[128];
|
||||
#endif
|
||||
|
||||
JASSeqCtrl* seqCtrl = param_0->getSeqCtrl();
|
||||
u32 r30 = 0;
|
||||
|
||||
Reference in New Issue
Block a user