mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-23 16:54:03 +02:00
Rename a function for clarity.
This commit is contained in:
+2
-2
@@ -11881,7 +11881,7 @@ Standard Library Stuff
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static MA_INLINE void ma_zero_memory(void* p, size_t sz)
|
static MA_INLINE void ma_zero_memory_default(void* p, size_t sz)
|
||||||
{
|
{
|
||||||
#ifdef MA_WIN32
|
#ifdef MA_WIN32
|
||||||
ZeroMemory(p, sz);
|
ZeroMemory(p, sz);
|
||||||
@@ -11893,7 +11893,7 @@ static MA_INLINE void ma_zero_memory(void* p, size_t sz)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifndef MA_ZERO_MEMORY
|
#ifndef MA_ZERO_MEMORY
|
||||||
#define MA_ZERO_MEMORY(p, sz) ma_zero_memory((p), (sz))
|
#define MA_ZERO_MEMORY(p, sz) ma_zero_memory_default((p), (sz))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef MA_COPY_MEMORY
|
#ifndef MA_COPY_MEMORY
|
||||||
|
|||||||
Reference in New Issue
Block a user