Deal with some -Wall warnings

This commit is contained in:
Bill Rossi 2025-01-03 20:59:10 -05:00
parent 4da1c6d868
commit bdb228653e
2 changed files with 3 additions and 4 deletions

View File

@ -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,

View File

@ -8,8 +8,7 @@
#define TARGET_FPS 60
int main(void)
{
int main(void) {
InitWindow(800, 450, "Text Adventure");
SetTargetFPS(TARGET_FPS);