diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index 1e6f19885d..fd812b6403 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3389,8 +3389,6 @@ static int action_ok_push_scan_file(const char *path, static void netplay_refresh_rooms_cb(void *task_data, void *user_data, const char *err) { char buf[PATH_MAX_LENGTH]; - RARCH_LOG("Refreshing rooms...\n"); - http_transfer_data_t *data = (http_transfer_data_t*)task_data; buf[0] = '\0'; diff --git a/menu/menu_input.c b/menu/menu_input.c index e55c5ccfbf..0d591023e1 100644 --- a/menu/menu_input.c +++ b/menu/menu_input.c @@ -443,6 +443,8 @@ static int menu_input_pointer_post_iterate( if (!pointer_oldpressed[0]) { + menu_ctx_pointer_t point; + menu_input->pointer.accel = 0; accel0 = 0; accel1 = 0; @@ -452,14 +454,12 @@ static int menu_input_pointer_post_iterate( pointer_old_y = pointer_y; pointer_oldpressed[0] = true; - menu_ctx_pointer_t point; - - point.x = start_x; - point.y = start_y; - point.ptr = menu_input->pointer.ptr; - point.cbs = cbs; - point.entry = entry; - point.action = action; + point.x = start_x; + point.y = start_y; + point.ptr = menu_input->pointer.ptr; + point.cbs = cbs; + point.entry = entry; + point.action = action; menu_driver_ctl(RARCH_MENU_CTL_POINTER_DOWN, &point); }