diff options
| author | Jacob Nevins <jacobn@chiark.greenend.org.uk> | 2007-02-25 12:54:46 +0000 |
|---|---|---|
| committer | Jacob Nevins <jacobn@chiark.greenend.org.uk> | 2007-02-25 12:54:46 +0000 |
| commit | b9fd636928ac476b232d6854e32305392764217c (patch) | |
| tree | c1be2eb9f7456e0ffa28651582f449db280fb01d /galaxies.c | |
| parent | 19824f58c9abf83105600c174bc2ef44709d9119 (diff) | |
| download | puzzles-b9fd636928ac476b232d6854e32305392764217c.zip puzzles-b9fd636928ac476b232d6854e32305392764217c.tar.gz puzzles-b9fd636928ac476b232d6854e32305392764217c.tar.bz2 puzzles-b9fd636928ac476b232d6854e32305392764217c.tar.xz | |
Fix a UI glitch where dragging an existing arrow could change what it
referred to.
[originally from svn r7331]
Diffstat (limited to 'galaxies.c')
| -rw-r--r-- | galaxies.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2245,8 +2245,8 @@ static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds, * Found a dot. Begin a drag from it. */ dot = &SPACE(state, px1, py1); - ui->srcx = px; - ui->srcy = py; + ui->srcx = px1; + ui->srcy = py1; goto done; /* multi-level break */ } } |