MAMEHub
MAMEHub copied to clipboard
Suggestion: overclock higher than 200%
Like the regular version of MAME/MESS, this one only can be overclocked up to 200%. Some games (notably Midnight Resistance for arcade) need to be overclocked higher than that to not have any slowdown. Midnight Resistance actually needs to go even above 400% to never have any slowdown for the whole game. To change the overclocking so it would allow a higher number, it would be as simple as opening ui.c and going to this section.
/* add CPU overclocking */
numitems = cpu_gettotalcpu();
for (item = 0; item < numitems; item++)
slider_config(&slider_list[slider_count++], 10, 1000, 2000, 1, slider_overclock, item);
The 2000 could be changed to 8000 to allow for 800% overclocking. The 1 to the right of the 2000 could be changed to a 5 to allow for the numbers to be changed faster when you make the numbers go up or down. It would be great if you could implement this change.
Thanks for taking the time to read this.