From 4bf75a8d8ee1a5adae7dd1deb571ef943d874ce7 Mon Sep 17 00:00:00 2001 From: Arisotura Date: Mon, 1 Apr 2019 04:52:03 +0200 Subject: [PATCH] =?UTF-8?q?gl=C3=B6rg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/libui_sdl/libui/windows/alloc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libui_sdl/libui/windows/alloc.cpp b/src/libui_sdl/libui/windows/alloc.cpp index e29d60eb..cf6bd2ed 100644 --- a/src/libui_sdl/libui/windows/alloc.cpp +++ b/src/libui_sdl/libui/windows/alloc.cpp @@ -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);