shithub: puzzles

Download patch

ref: 091bef1a8264b677d711f2de1e765035d3d0e3c5
parent: f2f39af2d3ca27ee9aa2e284896efa07f5df5f02
author: Simon Tatham <[email protected]>
date: Mon Apr 26 13:59:22 EDT 2021

Mosaic: implement game_status.

--- a/mosaic.c
+++ b/mosaic.c
@@ -1523,6 +1523,8 @@
 
 static int game_status(const game_state *state)
 {
+    if (state->not_completed_clues == 0)
+        return +1;
     return 0;
 }