aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2008-11-28 18:33:39 +0000
committerSimon Tatham <anakin@pobox.com>2008-11-28 18:33:39 +0000
commitf514a1ea909bf182e8646cc9ae8c62288bf02464 (patch)
tree9df55230774e381998d0234fdb2133cfd021c61c
parentb2f1b324fe0cde3049af897d7b6c6d312fd8ccc0 (diff)
downloadpuzzles-f514a1ea909bf182e8646cc9ae8c62288bf02464.zip
puzzles-f514a1ea909bf182e8646cc9ae8c62288bf02464.tar.gz
puzzles-f514a1ea909bf182e8646cc9ae8c62288bf02464.tar.bz2
puzzles-f514a1ea909bf182e8646cc9ae8c62288bf02464.tar.xz
Let's have some more presets in here: 3x3 is much _too_ short and
easy compared to 6x6. [originally from svn r8340]
-rw-r--r--dominosa.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/dominosa.c b/dominosa.c
index 42a7a02..bd170dc 100644
--- a/dominosa.c
+++ b/dominosa.c
@@ -109,8 +109,12 @@ static int game_fetch_preset(int i, char **name, game_params **params)
switch (i) {
case 0: n = 3; break;
- case 1: n = 6; break;
- case 2: n = 9; break;
+ case 1: n = 4; break;
+ case 2: n = 5; break;
+ case 3: n = 6; break;
+ case 4: n = 7; break;
+ case 5: n = 8; break;
+ case 6: n = 9; break;
default: return FALSE;
}