Skip to content

Commit

Permalink
Tabs...
Browse files Browse the repository at this point in the history
  • Loading branch information
Winterleaf committed Dec 1, 2014
1 parent 5dfc293 commit 8e0ae15
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Engine/source/platform/platformCPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ void SetProcessorInfo(Platform::SystemInfo_struct::Processor& pInfo,
pInfo.properties |= (properties & BIT_SSE) ? CPU_PROP_SSE : 0;
pInfo.properties |= ( properties & BIT_SSE2 ) ? CPU_PROP_SSE2 : 0;
pInfo.properties |= (properties & BIT_3DNOW) ? CPU_PROP_3DNOW : 0;
// Phenom and PhenomII support SSE3, SSE4a
pInfo.properties |= ( properties2 & BIT_SSE3 ) ? CPU_PROP_SSE3 : 0;
// Phenom and PhenomII support SSE3, SSE4a
pInfo.properties |= ( properties2 & BIT_SSE3 ) ? CPU_PROP_SSE3 : 0;
pInfo.properties |= ( properties2 & BIT_SSE4_1 ) ? CPU_PROP_SSE4_1 : 0;
// switch on processor family code
switch ((processor >> 8) & 0xf)
Expand Down Expand Up @@ -227,19 +227,19 @@ void SetProcessorInfo(Platform::SystemInfo_struct::Processor& pInfo,
break;

// Phenom Family
case 15:
case 15:
pInfo.type = CPU_AMD_Phenom;
pInfo.name = StringTable->insert("AMD Phenom");
break;

// Phenom II Family
case 16:
// Phenom II Family
case 16:
pInfo.type = CPU_AMD_PhenomII;
pInfo.name = StringTable->insert("AMD Phenom II");
break;

// Bulldozer Family
case 17:
// Bulldozer Family
case 17:
pInfo.type = CPU_AMD_Bulldozer;
pInfo.name = StringTable->insert("AMD Bulldozer");
break;
Expand Down

0 comments on commit 8e0ae15

Please sign in to comment.