This commit is contained in:
Arisotura 2019-04-01 04:52:03 +02:00
parent 1f13d9ce80
commit 4bf75a8d8e
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void *uiAlloc(size_t size, const char *type)
{
byteArray *out;
out = new byteArray(size, 0);//printf("alloc %s at %08X\n", type, rawBytes(out));
out = new byteArray(size, 0);
heap[rawBytes(out)] = out;
types[out] = type;
return rawBytes(out);