Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
doofy-dev committed Jun 25, 2023
1 parent 7655fdb commit b75f0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solitaire.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ void tick(GameState *game_state, NotificationApp *notification) {
if (game_state->state == GameStatePlay) {
if (game_state->longPress && game_state->dragging_hand.index == 1) {
for (uint8_t i = 0; i < 4; i++) {
if (place_on_top(&(game_state->top_car0ds[i]), game_state->dragging_hand.cards[0])) {
if (place_on_top(&(game_state->top_cards[i]), game_state->dragging_hand.cards[0])) {
remove_drag(game_state);
wasAction = true;
break;
Expand Down

0 comments on commit b75f0d7

Please sign in to comment.