Expanded move_t type with QUIT and added MOVECOUNT

This commit is contained in:
AnnaSnoeijs 2025-06-06 21:31:59 +02:00
parent 7bbd877fb5
commit 2d11458586
4 changed files with 16 additions and 3 deletions

View file

@ -52,6 +52,7 @@ void playMove(
case POP: // Pop out the lowest and make all above fall down
boardptr->column [ column ] >>= 1;
boardptr->height [ column ]--;
default: // Do nothing
}
}