summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/unequal.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/unequal.c')
-rw-r--r--apps/plugins/puzzles/src/unequal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/puzzles/src/unequal.c b/apps/plugins/puzzles/src/unequal.c
index db309e2c58..addcffaf68 100644
--- a/apps/plugins/puzzles/src/unequal.c
+++ b/apps/plugins/puzzles/src/unequal.c
@@ -1282,12 +1282,12 @@ fail:
1282 1282
1283static key_label *game_request_keys(const game_params *params, int *nkeys) 1283static key_label *game_request_keys(const game_params *params, int *nkeys)
1284{ 1284{
1285 int i;
1285 int order = params->order; 1286 int order = params->order;
1286 char off = (order > 9) ? '0' : '1'; 1287 char off = (order > 9) ? '0' : '1';
1287 key_label *keys = snewn(order + 1, key_label); 1288 key_label *keys = snewn(order + 1, key_label);
1288 *nkeys = order + 1; 1289 *nkeys = order + 1;
1289 1290
1290 int i;
1291 for(i = 0; i < order; i++) { 1291 for(i = 0; i < order; i++) {
1292 if (i==10) off = 'a'-10; 1292 if (i==10) off = 'a'-10;
1293 keys[i].button = i + off; 1293 keys[i].button = i + off;