Merge pull request #1054 from Calinou/increase-max-overclock-factor

Increase maximum allowed overclocking factor to 20
This commit is contained in:
Richard Goedeken 2024-01-12 20:08:12 -08:00 committed by GitHub
commit 97f7dc63d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1640,8 +1640,8 @@ m64p_error main_run(void)
if (count_per_op <= 0)
count_per_op = ROM_SETTINGS.countperop;
if (count_per_op_denom_pot > 11)
count_per_op_denom_pot = 11;
if (count_per_op_denom_pot > 20)
count_per_op_denom_pot = 20;
si_dma_duration = ConfigGetParamInt(g_CoreConfig, "SiDmaDuration");
if (si_dma_duration < 0)