mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-21 20:11:12 +00:00
Win32 CPU cpuinfo was also using SDL_MMXExt() and SDL_Had3DNewExt()
This commit is contained in:
parent
be96974742
commit
21fc19f9d0
1 changed files with 2 additions and 2 deletions
|
@ -3039,8 +3039,8 @@ const CPUInfoFlags *I_CPUInfo(void)
|
|||
WIN_CPUInfo.SSE2 = SDL_HasSSE2();
|
||||
WIN_CPUInfo.AltiVec = SDL_HasAltiVec();
|
||||
}
|
||||
WIN_CPUInfo.MMXExt = SDL_HasMMXExt();
|
||||
WIN_CPUInfo.AMD3DNowExt = SDL_Has3DNowExt();
|
||||
WIN_CPUInfo.MMXExt = SDL_FALSE; //SDL_HasMMXExt(); No longer in SDL2
|
||||
WIN_CPUInfo.AMD3DNowExt = SDL_FALSE; //SDL_Has3DNowExt(); No longer in SDL2
|
||||
#endif
|
||||
GetSystemInfo(&SI);
|
||||
WIN_CPUInfo.CPUs = SI.dwNumberOfProcessors;
|
||||
|
|
Loading…
Reference in a new issue