Change the default CPU type so that QuickTime will also run on
platforms where the cpu detection code does not work.
This commit is contained in:
parent
409000c36f
commit
456ffd6241
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue