From bdb228653e6d461bc0390a55732fc118f6edaa9a Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Fri, 3 Jan 2025 20:59:10 -0500 Subject: [PATCH] Deal with some -Wall warnings --- 01_text_adventure/input.c | 4 ++-- 01_text_adventure/main.c | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/01_text_adventure/input.c b/01_text_adventure/input.c index 7962ee6..783e713 100644 --- a/01_text_adventure/input.c +++ b/01_text_adventure/input.c @@ -45,7 +45,7 @@ void handleKeyPress(Input *input, int c) { void handle_pressed_keys(Input *input) { int c; - while(c = GetKeyPressed()) { + while((c = GetKeyPressed())) { handleKeyPress(input, c); } } @@ -57,7 +57,7 @@ void draw_prompt(Input *input) { void draw_text(Input *input) { draw_prompt(input); - int text_width = MeasureText(input->input_buffer, 20); + // int text_width = MeasureText(input->input_buffer, 20); DrawText( input->input_buffer, input->position.x + 20, diff --git a/01_text_adventure/main.c b/01_text_adventure/main.c index c1eb9df..ccd08df 100644 --- a/01_text_adventure/main.c +++ b/01_text_adventure/main.c @@ -8,8 +8,7 @@ #define TARGET_FPS 60 -int main(void) -{ +int main(void) { InitWindow(800, 450, "Text Adventure"); SetTargetFPS(TARGET_FPS);