diff options
| author | Simon Tatham <anakin@pobox.com> | 2007-02-26 20:35:47 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2007-02-26 20:35:47 +0000 |
| commit | 15f70f527a0a753285e3fa871bd4018e547fbb05 (patch) | |
| tree | d34aebfc6c8e4ad48f0c1aeabbbaff7432e5cc24 /mines.c | |
| parent | 3bfe0fb32eae41dcc213e1cef860ec421cc2540c (diff) | |
| download | puzzles-15f70f527a0a753285e3fa871bd4018e547fbb05.zip puzzles-15f70f527a0a753285e3fa871bd4018e547fbb05.tar.gz puzzles-15f70f527a0a753285e3fa871bd4018e547fbb05.tar.bz2 puzzles-15f70f527a0a753285e3fa871bd4018e547fbb05.tar.xz | |
Dariusz Olszewski's changes to support compiling for PocketPC. This
is mostly done with ifdefs in windows.c; so mkfiles.pl generates a
new makefile (Makefile.wce) and Recipe enables it, but it's hardly
any different from Makefile.vc apart from a few definitions at the
top of the files.
Currently the PocketPC build is not enabled in the build script, but
with any luck I'll be able to do so reasonably soon.
[originally from svn r7337]
Diffstat (limited to 'mines.c')
| -rw-r--r-- | mines.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -28,7 +28,11 @@ enum { #define PREFERRED_TILE_SIZE 20 #define TILE_SIZE (ds->tilesize) +#ifdef SMALL_SCREEN +#define BORDER 8 +#else #define BORDER (TILE_SIZE * 3 / 2) +#endif #define HIGHLIGHT_WIDTH (TILE_SIZE / 10) #define OUTER_HIGHLIGHT_WIDTH (BORDER / 10) #define COORD(x) ( (x) * TILE_SIZE + BORDER ) @@ -102,8 +106,10 @@ static const struct game_params mines_presets[] = { {9, 9, 35, TRUE}, {16, 16, 40, TRUE}, {16, 16, 99, TRUE}, +#ifndef SMALL_SCREEN {30, 16, 99, TRUE}, {30, 16, 170, TRUE}, +#endif }; static int game_fetch_preset(int i, char **name, game_params **params) @@ -3103,7 +3109,7 @@ const struct game thegame = { FALSE, FALSE, game_print_size, game_print, TRUE, /* wants_statusbar */ TRUE, game_timing_state, - BUTTON_BEATS(LEFT_BUTTON, RIGHT_BUTTON), + BUTTON_BEATS(LEFT_BUTTON, RIGHT_BUTTON) | REQUIRE_RBUTTON, }; #ifdef STANDALONE_OBFUSCATOR |