diff options
Diffstat (limited to 'netslide.c')
| -rw-r--r-- | netslide.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |