summaryrefslogtreecommitdiff
path: root/counter.h
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2023-10-13 22:30:00 -0500
committercitrons <citrons@mondecitronne.com>2023-10-13 22:30:00 -0500
commit5b8082c9cf3d70d1b158d2d7744fd5c008f788d3 (patch)
treeb582e1b37908a7761763dd5eb3f8268235a248d3 /counter.h
parent648bc6f1c2dc970a505adf849a8fad442c2d8e49 (diff)
use integer scaling for graphics
Diffstat (limited to 'counter.h')
-rw-r--r--counter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/counter.h b/counter.h
index 7dcb97c..4250429 100644
--- a/counter.h
+++ b/counter.h
@@ -4,7 +4,7 @@
#include <SDL.h>
int draw_counter(SDL_Renderer *rend,
- SDL_Point screen_pos, double size, SDL_Color color,
+ SDL_Point screen_pos, int size, SDL_Color color,
int number, int digits);
#endif