Skip to content

Commit

Permalink
Fix incorrect frame skip for 100% speed - changed not to skip frames.
Browse files Browse the repository at this point in the history
This restores the frame skip value to 1 which was mistakenly changed in
commit cc93741
  • Loading branch information
Steve Fosdick committed Dec 1, 2023
1 parent b5134db commit 42b2767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const emu_speed_t emu_speeds[NUM_EMU_SPEEDS] = {
{ "25%", 1.0 / (50.0 * 0.25), 1 },
{ "50%", 1.0 / (50.0 * 0.50), 1 },
{ "75%", 1.0 / (50.0 * 0.75), 1 },
{ "100%", 1.0 / 50.0, 2 },
{ "100%", 1.0 / 50.0, 1 },
{ "150%", 1.0 / (50.0 * 1.50), 2 },
{ "200%", 1.0 / (50.0 * 2.00), 2 },
{ "300%", 1.0 / (50.0 * 3.00), 3 },
Expand Down

0 comments on commit 42b2767

Please sign in to comment.