diff --git a/menu/menu_display.c b/menu/menu_display.c index 045225b830..efe43670e1 100644 --- a/menu/menu_display.c +++ b/menu/menu_display.c @@ -723,7 +723,7 @@ void menu_display_snow(int width, int height) float alpha; bool alive; }; - static struct display_particle particles[PARTICLES_COUNT] = {0}; + static struct display_particle particles[PARTICLES_COUNT] = {{0}}; static int timeout = 0; unsigned i, max_gen = 2; diff --git a/runloop.c b/runloop.c index 790300262c..4579b304b6 100644 --- a/runloop.c +++ b/runloop.c @@ -1205,7 +1205,6 @@ int runloop_iterate(event_cmd_state_t *cmd, unsigned *sleep_ms) case RUNLOOP_STATE_SLEEP: case RUNLOOP_STATE_END: case RUNLOOP_STATE_MENU_ITERATE: - /* RetroArch has been paused. */ core_poll(); #ifdef HAVE_NETWORKING /* FIXME: This is an ugly way to tell Netplay this... */