diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2025-11-17 10:01:03 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-17 20:01:03 +0200 |
| commit | 540217c31b88246d5c3abd57bb3fbd97cff6d31c (patch) | |
| tree | cc08666dad6a7cd55539168a0d0e3f6bba188488 /src/JSystem/JKernel/JKRExpHeap.cpp | |
| parent | 4350a38fe01fa57890eade52c7c5e3789cce83ac (diff) | |
wii building OK / m_Do_graphic debug work (#2815)
* wii building OK + m_Do_graphic debug work
* d_meter_HIO debug cleanup
* wii m_Do_graphic stuff
* tag_attack_item OK, mirror_chain almost
* fix build
* mg_fshop matching
Diffstat (limited to 'src/JSystem/JKernel/JKRExpHeap.cpp')
| -rw-r--r-- | src/JSystem/JKernel/JKRExpHeap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/JSystem/JKernel/JKRExpHeap.cpp b/src/JSystem/JKernel/JKRExpHeap.cpp index 9bbf37a505..143b05e21b 100644 --- a/src/JSystem/JKernel/JKRExpHeap.cpp +++ b/src/JSystem/JKernel/JKRExpHeap.cpp @@ -826,7 +826,7 @@ bool JKRExpHeap::dump() { } JUTReportConsole_f("%s %08x: %08x %3d %3d (%08x %08x)\n", - block->_isTempMemBlock() ? " temp" : "alloc", block->getContent(), + block->isTempMemBlock() ? " temp" : "alloc", block->getContent(), block->size, block->mGroupId, block->getAlignment(), block->mPrev, block->mNext); usedBytes += sizeof(CMemBlock) + block->size + block->getAlignment(); @@ -886,7 +886,7 @@ bool JKRExpHeap::dump_sort() { int offset = block->getAlignment(); void* content = block->getContent(); - const char* type = block->_isTempMemBlock() ? " temp" : "alloc"; + const char* type = block->isTempMemBlock() ? " temp" : "alloc"; JUTReportConsole_f("%s %08x: %08x %3d %3d (%08x %08x)\n", type, content, block->size, block->getGroupId(), offset, block->mPrev, block->mNext); usedBytes += sizeof(CMemBlock) + block->size + block->getAlignment(); |
