From 57d9a0b227bbc423cf72a154de7c358d8974f3c6 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Thu, 27 Feb 2025 15:32:19 -0500 Subject: [PATCH] Fix C99 error on Mac (fake operating system) --- dialog.h | 1 + options.h | 1 + 2 files changed, 2 insertions(+) diff --git a/dialog.h b/dialog.h index 90ed32f..9e04419 100644 --- a/dialog.h +++ b/dialog.h @@ -14,6 +14,7 @@ typedef struct DialogOption DialogOption; typedef struct Dialog Dialog; #include "game.h" +#include "options.h" #define DIALOG_OUTER_RECTANGLE (Rectangle) { 200, 200, 1000, 500 } #define DIALOG_INNER_RECTANGLE (Rectangle) { 220, 220, 960, 460 } diff --git a/options.h b/options.h index dc10ed6..ec112f7 100644 --- a/options.h +++ b/options.h @@ -33,5 +33,6 @@ void load_options_from_game(Game *g); void save_options_to_game(Game *g); void options_handle_input(Game *g); void options_draw(Game *g); +void DrawTextCentered(char *text, int center_x, int y, int point, Color color); #endif