Fix C99 error on Mac (fake operating system)

This commit is contained in:
Bill Rossi 2025-02-27 15:32:19 -05:00
parent 65c31824fc
commit 57d9a0b227
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ typedef struct DialogOption DialogOption;
typedef struct Dialog Dialog; typedef struct Dialog Dialog;
#include "game.h" #include "game.h"
#include "options.h"
#define DIALOG_OUTER_RECTANGLE (Rectangle) { 200, 200, 1000, 500 } #define DIALOG_OUTER_RECTANGLE (Rectangle) { 200, 200, 1000, 500 }
#define DIALOG_INNER_RECTANGLE (Rectangle) { 220, 220, 960, 460 } #define DIALOG_INNER_RECTANGLE (Rectangle) { 220, 220, 960, 460 }

View File

@ -33,5 +33,6 @@ void load_options_from_game(Game *g);
void save_options_to_game(Game *g); void save_options_to_game(Game *g);
void options_handle_input(Game *g); void options_handle_input(Game *g);
void options_draw(Game *g); void options_draw(Game *g);
void DrawTextCentered(char *text, int center_x, int y, int point, Color color);
#endif #endif