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