Skip to content

Commit

Permalink
Fix gfx teardown function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
zedr committed Jun 23, 2024
1 parent ad7eba0 commit 1bb9453
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/gfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

WINDOW *setup_gfx(void);

void teardown_gfx();
void teardown_gfx(void);

void draw_debug(struct game *g, int x, int y);

Expand Down
2 changes: 1 addition & 1 deletion src/gfx.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ WINDOW *setup_gfx(void)
return win;
}

void teardown_gfx()
void teardown_gfx(void)
{
endwin();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "../include/queue.h"
#include "../include/gfx.h"

#define TINYCOLS_VERSION "0.8.1"
#define TINYCOLS_VERSION "0.8.2"
#define TICK_TIME 10000
#define MAX_TIMER 180

Expand Down

0 comments on commit 1bb9453

Please sign in to comment.