Remove debug logs

This commit is contained in:
Maschell 2024-04-26 10:37:24 +02:00
parent bdf9e079c8
commit 95014a2123
1 changed files with 0 additions and 1 deletions

View File

@ -14,7 +14,6 @@ public:
}
~MemoryWrapper() {
if (mPtr && mFreeFn) {
DEBUG_FUNCTION_LINE_ERR("Free memory wrapper for %08X %d", mPtr, mSize);
memset(mPtr, 0, mSize);
mFreeFn(mPtr);
}