mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-14 12:24:16 -04:00
Fix not passing arguments to printf
This commit is contained in:
@@ -818,9 +818,7 @@ bool JKRExpHeap::dump() {
|
||||
}
|
||||
|
||||
/* 802B2D5C-802B2F5C .text dump_sort_by_address__10JKRExpHeapFv */
|
||||
// regalloc
|
||||
bool JKRExpHeap::dump_sort_by_address() {
|
||||
/* Nonmatching */
|
||||
lock();
|
||||
bool result = check();
|
||||
u32 usedBytes = 0;
|
||||
@@ -855,7 +853,7 @@ bool JKRExpHeap::dump_sort_by_address() {
|
||||
}
|
||||
|
||||
if (!block->isValid()) {
|
||||
JUTReportConsole_f("xxxxx %08x: -------- --- --- (-------- --------)\nabort\n");
|
||||
JUTReportConsole_f("xxxxx %08x: -------- --- --- (-------- --------)\nabort\n", nextBlock);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
@@ -106,8 +106,8 @@ void JKRStdHeap::do_freeTail() {
|
||||
}
|
||||
|
||||
/* 802B12A4-802B12D8 .text do_resize__10JKRStdHeapFPvUl */
|
||||
s32 JKRStdHeap::do_resize(void*, u32) {
|
||||
JUTWarningConsole_f("resize: cannot resize memory block (%08x: %d)\n");
|
||||
s32 JKRStdHeap::do_resize(void* ptr, u32 newSize) {
|
||||
JUTWarningConsole_f("resize: cannot resize memory block (%08x: %d)\n", ptr, newSize);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user