From 4a92ecf9e5a3d459b01b3fc287fee1a40c6b6ed2 Mon Sep 17 00:00:00 2001 From: Robert MacGregor Date: Tue, 24 May 2022 21:11:08 -0400 Subject: [PATCH] * BugFix: Remove the last remnant of 3DNow! Extensions. --- Engine/source/platformWin32/winCPUInfo.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Engine/source/platformWin32/winCPUInfo.cpp b/Engine/source/platformWin32/winCPUInfo.cpp index e7f2ef4bc..7b058fd8c 100644 --- a/Engine/source/platformWin32/winCPUInfo.cpp +++ b/Engine/source/platformWin32/winCPUInfo.cpp @@ -82,9 +82,6 @@ static void detectCpuFeatures(Platform::SystemInfo_struct::Processor &processor) U32 edx = cpuInfo[3]; // edx U32 ecx = cpuInfo[2]; // ecx - if (processor.type == ProcessorType::CPU_AMD) - processor.properties |= (edx & BIT_3DNOW) ? CPU_PROP_3DNOW : 0; - processor.properties |= (edx & BIT_MMX) ? CPU_PROP_MMX : 0; processor.properties |= (edx & BIT_SSE) ? CPU_PROP_SSE : 0; processor.properties |= (edx & BIT_SSE2) ? CPU_PROP_SSE2 : 0; @@ -165,8 +162,6 @@ void Processor::init() Con::printf(" Processor: %s", Platform::SystemInfo.processor.name); if (Platform::SystemInfo.processor.properties & CPU_PROP_MMX) Con::printf(" MMX detected" ); - if (Platform::SystemInfo.processor.properties & CPU_PROP_3DNOW) - Con::printf(" 3DNow detected" ); if (Platform::SystemInfo.processor.properties & CPU_PROP_SSE) Con::printf(" SSE detected" ); if (Platform::SystemInfo.processor.properties & CPU_PROP_SSE2)