Skip to content

Commit

Permalink
Fix running speed - merge mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Fosdick committed Dec 1, 2023
1 parent f5dacef commit a629f44
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@ static fspeed_type_t fullspeed = FSPEED_NONE;
static bool bempause = false;

const emu_speed_t emu_speeds[NUM_EMU_SPEEDS] = {
{ "10%", 1.0 / (50.0 * 0.10), 1 },
{ "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, 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 },
{ "400%", 1.0 / (50.0 * 4.00), 4 },
{ "500%", 1.0 / (50.0 * 5.00), 5 }
{ "10%", 50.0 * 0.10, 1 },
{ "25%", 50.0 * 0.25, 1 },
{ "50%", 50.0 * 0.50, 1 },
{ "75%", 50.0 * 0.75, 1 },
{ "100%", 50.0, 1 },
{ "150%", 50.0 * 1.50, 2 },
{ "200%", 50.0 * 2.00, 2 },
{ "300%", 50.0 * 3.00, 3 },
{ "400%", 50.0 * 4.00, 4 },
{ "500%", 50.0 * 5.00, 5 }
};

void main_reset()
Expand Down

0 comments on commit a629f44

Please sign in to comment.