From 456ffd624164c1c9ba11e4950e535eb594751b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gouget?= Date: Fri, 16 Aug 2002 20:00:14 +0000 Subject: [PATCH] Change the default CPU type so that QuickTime will also run on platforms where the cpu detection code does not work. --- misc/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/cpu.c b/misc/cpu.c index 8f70080c829..11e272e9e78 100644 --- a/misc/cpu.c +++ b/misc/cpu.c @@ -81,9 +81,9 @@ VOID WINAPI GetSystemInfo( cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF; cachedsi.dwActiveProcessorMask = 1; cachedsi.dwNumberOfProcessors = 1; - cachedsi.dwProcessorType = PROCESSOR_INTEL_386; + cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM; cachedsi.dwAllocationGranularity = 0x10000; - cachedsi.wProcessorLevel = 3; /* 386 */ + cachedsi.wProcessorLevel = 5; /* 586 */ cachedsi.wProcessorRevision = 0; cache = 1; /* even if there is no more info, we now have a cacheentry */