Changed CPU cycles period tweak so it only affects the 486's;

Applied Laser XT ROM BASIC and Laser XT EMS patches from Greatpsycho.
This commit is contained in:
OBattler
2017-06-03 16:34:40 +02:00
parent 8151f47135
commit ac18a8f539
7 changed files with 217 additions and 43 deletions

View File

@@ -1284,32 +1284,12 @@ static int cpu_cycle_period(void)
{
switch(cpu_pci_speed)
{
case 16000000:
return 800;
case 333333333:
return is_pentium ? 1000 : 1333;
break;
case 20000000:
case 40000000:
return 1000;
break;
case 25000000:
default:
return 1000;
break;
case 27500000:
return 1100;
break;
case 30000000:
return 1200;
break;
case 333333333:
return 1333;
break;
case 37500000:
return 1500;
break;
case 41666667:
return 1041;
break;
}
}