aboutsummaryrefslogtreecommitdiff
path: root/netslide.c
diff options
context:
space:
mode:
Diffstat (limited to 'netslide.c')
-rw-r--r--netslide.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/netslide.c b/netslide.c
index d58a615..33447ae 100644
--- a/netslide.c
+++ b/netslide.c
@@ -1073,7 +1073,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
}
ui->cur_visible = true;
- return UI_UPDATE;
+ return MOVE_UI_UPDATE;
}
if (button == LEFT_BUTTON || button == RIGHT_BUTTON) {
@@ -1087,7 +1087,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
} else {
/* 'click' when cursor is invisible just makes cursor visible. */
ui->cur_visible = true;
- return UI_UPDATE;
+ return MOVE_UI_UPDATE;
}
} else
return NULL;