SDL_test_memory.c: adjust for new SDL_PLATFORM_WINDOWS meaning.

This commit is contained in:
Ozkan Sezer 2024-01-24 20:37:00 +03:00 committed by Ozkan Sezer
parent 07a0c0e402
commit 1c79edbe02

View File

@ -25,7 +25,7 @@
#include <libunwind.h> #include <libunwind.h>
#endif #endif
#ifdef SDL_PLATFORM_WINDOWS #ifdef SDL_PLATFORM_WIN32
#include <windows.h> #include <windows.h>
#include <dbghelp.h> #include <dbghelp.h>
@ -153,7 +153,7 @@ static void SDL_TrackAllocation(void *mem, size_t size)
} }
} }
} }
#elif defined(SDL_PLATFORM_WINDOWS) #elif defined(SDL_PLATFORM_WIN32)
{ {
Uint32 count; Uint32 count;
PVOID frames[63]; PVOID frames[63];
@ -295,7 +295,7 @@ void SDLTest_TrackAllocations(void)
if (s_previous_allocations != 0) { if (s_previous_allocations != 0) {
SDL_Log("SDLTest_TrackAllocations(): There are %d previous allocations, disabling free() validation", s_previous_allocations); SDL_Log("SDLTest_TrackAllocations(): There are %d previous allocations, disabling free() validation", s_previous_allocations);
} }
#ifdef SDL_PLATFORM_WINDOWS #ifdef SDL_PLATFORM_WIN32
{ {
s_dbghelp = SDL_LoadObject("dbghelp.dll"); s_dbghelp = SDL_LoadObject("dbghelp.dll");
if (s_dbghelp) { if (s_dbghelp) {