SDL2: use SDL_GetSystemRAM() to get total RAM

This commit is contained in:
Alam Ed Arias 2025-03-29 14:00:52 -04:00
parent c99e29b74f
commit f694529727

View file

@ -3239,7 +3239,13 @@ size_t I_GetFreeMem(size_t *total)
#else
// Guess 48 MB.
if (total)
{
#if SDL_VERSION_ATLEAST(2,0,1)
*total = SDL_GetSystemRAM();
#else
*total = 48<<20;
#endif
}
return 48<<20;
#endif
}