mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 16:05:44 -07:00
Janes H provides a small workaround for a Palm tools bug.
[originally from svn r6403]
This commit is contained in:
4
tents.c
4
tents.c
@ -1573,8 +1573,8 @@ static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds,
|
|||||||
int v = drag_xform(ui, x, y, state->grid[y*w+x]);
|
int v = drag_xform(ui, x, y, state->grid[y*w+x]);
|
||||||
if (state->grid[y*w+x] != v) {
|
if (state->grid[y*w+x] != v) {
|
||||||
tmplen = sprintf(tmpbuf, "%s%c%d,%d", sep,
|
tmplen = sprintf(tmpbuf, "%s%c%d,%d", sep,
|
||||||
(v == BLANK ? 'B' :
|
(int)(v == BLANK ? 'B' :
|
||||||
v == TENT ? 'T' : 'N'),
|
v == TENT ? 'T' : 'N'),
|
||||||
x, y);
|
x, y);
|
||||||
sep = ";";
|
sep = ";";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user