Skip to content

Commit

Permalink
Error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
squee72564 committed Jan 7, 2024
1 parent 37c75f5 commit a686a6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/minesweeper_game_screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static const float difficulty_multiplier[5] = {

// Static helper functions
static void setup_board(MineSweeperGameScreen* instance);
static Point bfs_to_closest_tile(MineSweeperGameScreenModel* model) {
static Point bfs_to_closest_tile(MineSweeperGameScreenModel* model);
static inline void bfs_tile_clear(MineSweeperGameScreenModel* model);
static void mine_sweeper_game_screen_set_board_information(
MineSweeperGameScreen* instance,
Expand Down Expand Up @@ -244,7 +244,7 @@ static void setup_board(MineSweeperGameScreen* instance) {
);
}

static inline Point bfs_to_closest_tile(MineSweeperGameScreenModel* model) {
static Point bfs_to_closest_tile(MineSweeperGameScreenModel* model) {
// Init both the set and dequeue
point_deq_t deq;
point_set_t set;
Expand Down

0 comments on commit a686a6e

Please sign in to comment.