aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2012-02-13 21:10:47 +0000
committerSimon Tatham <anakin@pobox.com>2012-02-13 21:10:47 +0000
commit21629d7e44bb61a26ae5088f524eef85f96a9aab (patch)
tree160c31501598a505c3b21f9f569ea30f1d36f53f
parent0c13787c2a17adc891f8e47c06b259f80bc8251a (diff)
downloadpuzzles-21629d7e44bb61a26ae5088f524eef85f96a9aab.zip
puzzles-21629d7e44bb61a26ae5088f524eef85f96a9aab.tar.gz
puzzles-21629d7e44bb61a26ae5088f524eef85f96a9aab.tar.bz2
puzzles-21629d7e44bb61a26ae5088f524eef85f96a9aab.tar.xz
Fix one-character typo in r9405 which was breaking right-clicks.
[originally from svn r9406] [r9405 == 0c13787c2a17adc891f8e47c06b259f80bc8251a]
-rw-r--r--pearl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pearl.c b/pearl.c
index 2ff58f6..9037011 100644
--- a/pearl.c
+++ b/pearl.c
@@ -1967,7 +1967,7 @@ static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds,
ui->ndragcoords = -1;
return buf ? buf : "";
- } else if (ui->dragcoords == 0) {
+ } else if (ui->ndragcoords == 0) {
/* Click (or tiny drag). Work out which edge we were
* closest to. */
int cx, cy;