From a2b70e2a6e90819df09812e96b153b1f6a408cde Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 5 Apr 2019 19:41:38 +0100 Subject: [PATCH] Dominosa: add presets for Hard and Extreme difficulty. I decided not to go all the way up to order-9 Extreme, because that takes a lot of CPU to generate. People can select it by hand if they don't mind that. --- dominosa.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dominosa.c b/dominosa.c index 2fd2af7..f31af62 100644 --- a/dominosa.c +++ b/dominosa.c @@ -142,6 +142,8 @@ static const struct game_params dominosa_presets[] = { { 7, DIFF_BASIC }, { 8, DIFF_BASIC }, { 9, DIFF_BASIC }, + { 6, DIFF_HARD }, + { 6, DIFF_EXTREME }, }; static bool game_fetch_preset(int i, char **name, game_params **params_out)