Skip to content

Commit

Permalink
Merge pull request #12 from ashleyhuxley/bombs-kill
Browse files Browse the repository at this point in the history
Fix problem mentioned in snarky comment
  • Loading branch information
BeanGirlThing authored Jul 7, 2024
2 parents 49d6069 + c61f3c7 commit 8c01df4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions subghz.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
// Transmit player position to other flipper
// player: Pointer to the current player structure
// state: Pointer to the game state
void tx_new_position(Player* player, BomberAppState* state)
// Hot Take: App state should always be first
{
void tx_new_position(BomberAppState* state, Player* player) {
furi_assert(state);
furi_assert(player);

Expand Down

0 comments on commit 8c01df4

Please sign in to comment.