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 c56e1ab..d43dc2e 100644
--- a/netslide.c
+++ b/netslide.c
@@ -1079,7 +1079,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
}
ui->cur_visible = 1;
- return "";
+ return UI_UPDATE;
}
if (button == LEFT_BUTTON || button == RIGHT_BUTTON) {
@@ -1093,7 +1093,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 = 1;
- return "";
+ return UI_UPDATE;
}
} else
return NULL;