Initialize MEMORYSTATUSEX size before GlobalMemoryStatusEx() (thanks, Justin!).
Fixes Bugzilla #2177.
This commit is contained in:
parent
678e0517aa
commit
c7744104c6
1 changed files with 1 additions and 0 deletions
|
@ -642,6 +642,7 @@ SDL_GetSystemRAM(void)
|
|||
#ifdef __WIN32__
|
||||
if (SDL_SystemRAM <= 0) {
|
||||
MEMORYSTATUSEX stat;
|
||||
stat.dwLength = sizeof(stat);
|
||||
if (GlobalMemoryStatusEx(&stat)) {
|
||||
SDL_SystemRAM = (int)(stat.ullTotalPhys / (1024 * 1024));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue