Vincent Gee 10 years ago
parent
commit
8e0ae15f74
1 changed files with 7 additions and 7 deletions
  1. 7 7
      Engine/source/platform/platformCPU.cpp

+ 7 - 7
Engine/source/platform/platformCPU.cpp

@@ -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)
@@ -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;