Skip to content

Commit

Permalink
Revert speedhack
Browse files Browse the repository at this point in the history
  • Loading branch information
meepingsnesroms committed Jun 6, 2016
1 parent 99069ef commit 0b8e5fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libretro/libretro.c
Expand Up @@ -474,8 +474,6 @@ void retro_deinit(void)
void retro_reset (void)
{
S9xSoftReset();

check_variables();
}

static int16_t retro_mouse_state[2][2] = {{0}, {0}};
Expand Down Expand Up @@ -623,6 +621,9 @@ void retro_run (void)
poll_cb();
report_buttons();
S9xMainLoop();

if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE_UPDATE, &updated) && updated)
check_variables();
}

size_t retro_serialize_size (void)
Expand Down

0 comments on commit 0b8e5fb

Please sign in to comment.