diff options
Diffstat (limited to 'guess.c')
| -rw-r--r-- | guess.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -410,6 +410,7 @@ static game_ui *new_ui(const game_state *state) ui->params = state->params; /* structure copy */ ui->curr_pegs = new_pegrow(state->params.npegs); ui->holds = snewn(state->params.npegs, bool); + ui->display_cur = getenv_bool("PUZZLES_SHOW_CURSOR", false); memset(ui->holds, 0, sizeof(bool)*state->params.npegs); ui->drag_opeg = -1; return ui; |