1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-30 12:53:51 +00:00

Add missing parameters.

This commit is contained in:
Bartosz Taudul 2020-07-02 17:17:01 +02:00
parent 4881f7aa54
commit 4179e85029

View File

@ -393,7 +393,7 @@ public:
SendCallstackMemory( callstack ); SendCallstackMemory( callstack );
profiler.m_serialLock.unlock(); profiler.m_serialLock.unlock();
#else #else
MemAlloc( ptr, size ); MemAlloc( ptr, size, secure );
#endif #endif
} }
@ -415,7 +415,7 @@ public:
SendCallstackMemory( callstack ); SendCallstackMemory( callstack );
profiler.m_serialLock.unlock(); profiler.m_serialLock.unlock();
#else #else
MemFree( ptr ); MemFree( ptr, secure );
#endif #endif
} }