Decomposed and fixed saves

This commit is contained in:
Rorikstr | Rust Dev 2025-10-01 00:01:44 +03:00
parent 65d2c2e287
commit cc6f9bb2d1
9 changed files with 112 additions and 72 deletions

View file

@ -19,7 +19,7 @@ int is_game_over() {
GameState_t* state = get_game_state();
for (int j = 0; j < FIELD_WIDTH; ++j) {
if (state->field[0][j] || state->field[1][j]) {
return 1;
return 1; // TODO
}
}