Mosaic: implement game_status.

This commit is contained in:
Simon Tatham
2021-04-26 17:59:22 +01:00
parent f2f39af2d3
commit 091bef1a82

View File

@ -1523,6 +1523,8 @@ static float game_flash_length(const game_state *oldstate,
static int game_status(const game_state *state) static int game_status(const game_state *state)
{ {
if (state->not_completed_clues == 0)
return +1;
return 0; return 0;
} }