Janes H provides a small workaround for a Palm tools bug.

[originally from svn r6403]
This commit is contained in:
Simon Tatham
2005-10-15 16:03:14 +00:00
parent 3bee86241c
commit 5f16a29d4c

View File

@ -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]);
if (state->grid[y*w+x] != v) {
tmplen = sprintf(tmpbuf, "%s%c%d,%d", sep,
(v == BLANK ? 'B' :
v == TENT ? 'T' : 'N'),
(int)(v == BLANK ? 'B' :
v == TENT ? 'T' : 'N'),
x, y);
sep = ";";