mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Update callback.cpp (#2826)
This commit is contained in:
@@ -279,8 +279,9 @@ public:
|
||||
|
||||
if (kNaturalAlignment >= _align)
|
||||
{
|
||||
intptr_t _ptrOld = (intptr_t) _ptr;
|
||||
void* ptr = ::realloc(_ptr, _size);
|
||||
bx::debugPrintf("%s(%d): REALLOC %p (old %p) of %d byte(s)\n", _file, _line, ptr, _ptr, _size);
|
||||
bx::debugPrintf("%s(%d): REALLOC %p (old %p) of %d byte(s)\n", _file, _line, ptr, _ptrOld, _size);
|
||||
|
||||
if (NULL == _ptr)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user