diff --git a/Core/HLE/sceHeap.cpp b/Core/HLE/sceHeap.cpp index 099e46f2d2..30556a0041 100644 --- a/Core/HLE/sceHeap.cpp +++ b/Core/HLE/sceHeap.cpp @@ -81,7 +81,7 @@ int sceHeapAllocHeapMemoryWithOption(u32 heapAddr, u32 memSize, u32 paramsPtr) { int sceHeapGetTotalFreeSize(u32 heapAddr) { Heap *heap = heapList[heapAddr]; - ERROR_LOG_REPORT(HLE,"UNIMPL sceHeapGetTotalFreeSize(%08x)", heapAddr); + DEBUG_LOG_REPORT(HLE,"UNIMPL sceHeapGetTotalFreeSize(%08x)", heapAddr); return heap->alloc.GetTotalFreeBytes(); }