mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Fix typo of SDL_Has3DNow() in Sys_GetProcessorFeatures()
This commit is contained in:
parent
2a3c331ba1
commit
11668bb1f0
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ cpuFeatures_t Sys_GetProcessorFeatures( void )
|
|||
|
||||
#ifndef DEDICATED
|
||||
if( SDL_HasRDTSC( ) ) features |= CF_RDTSC;
|
||||
if( SDL_SDL_Has3DNow( ) ) features |= CF_3DNOW;
|
||||
if( SDL_Has3DNow( ) ) features |= CF_3DNOW;
|
||||
if( SDL_HasMMX( ) ) features |= CF_MMX;
|
||||
if( SDL_HasSSE( ) ) features |= CF_SSE;
|
||||
if( SDL_HasSSE2( ) ) features |= CF_SSE2;
|
||||
|
|
Loading…
Reference in a new issue