diff options
| author | Arisotura <thetotalworm@gmail.com> | 2019-04-01 04:52:03 +0200 | 
|---|---|---|
| committer | Arisotura <thetotalworm@gmail.com> | 2019-04-01 04:52:03 +0200 | 
| commit | 4bf75a8d8ee1a5adae7dd1deb571ef943d874ce7 (patch) | |
| tree | 11dcad1d3135f52f7340892f00735a3a013be171 /src/libui_sdl/libui/windows | |
| parent | 1f13d9ce80c0cd5e94ba883ff6bb30c95d48a48a (diff) | |
glörg
Diffstat (limited to 'src/libui_sdl/libui/windows')
| -rw-r--r-- | src/libui_sdl/libui/windows/alloc.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libui_sdl/libui/windows/alloc.cpp b/src/libui_sdl/libui/windows/alloc.cpp index e29d60e..cf6bd2e 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);  |