mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Compression support
This commit is contained in:
parent
7e1b2c2469
commit
fbb622e956
4 changed files with 11 additions and 2 deletions
|
@ -421,7 +421,7 @@ void ContiguousHeap::DebugDump()
|
|||
str += "Merged";
|
||||
break;
|
||||
default:
|
||||
str += "??????";
|
||||
str += "??????";
|
||||
}
|
||||
|
||||
str += "\n";
|
||||
|
@ -440,7 +440,7 @@ void ContiguousHeap::DebugDump()
|
|||
for (auto idx : mFreeList)
|
||||
{
|
||||
auto block = CH_REL_TO_ABS(idx);
|
||||
char* kind = "??";
|
||||
const char* kind = "??";
|
||||
if (block->mKind == ChBlockKind_Unused)
|
||||
kind = "Unused";
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue