aboutsummaryrefslogtreecommitdiff
path: root/source/render.c
diff options
context:
space:
mode:
authorEmil Williams2026-02-05 09:29:51 +0000
committerEmil Williams2026-02-05 09:29:51 +0000
commit45570024a49b80359d848329f2c363d5bf9af44a (patch)
tree31243e117a965569ecbc745eba88b25536b7fc99 /source/render.c
parenta5209153cf8df1cd58c2f70f9eabb0bf5dd071f8 (diff)
downloadEUROPAXI-45570024a49b80359d848329f2c363d5bf9af44a.tar.xz
EUROPAXI-45570024a49b80359d848329f2c363d5bf9af44a.tar.zst
assets & core8e8m
Diffstat (limited to 'source/render.c')
-rw-r--r--source/render.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/render.c b/source/render.c
index ef7280e..ef28cba 100644
--- a/source/render.c
+++ b/source/render.c
@@ -1,6 +1,6 @@
#include "all.h"
-void draw_square_grid(game_t * game, size_t frame, int size, Texture * texture, int * array, size_t length) {
+void DrawSquareGrid(game_t * game, size_t frame, int size, Texture * texture, int * array, size_t length) {
(void)texture;
float x = game->frame_x[frame], y = game->frame_y[frame];
float square_length = size;
@@ -15,10 +15,10 @@ void draw_square_grid(game_t * game, size_t frame, int size, Texture * texture,
}
}
-/* void draw_vertical_bargraph(game_t * game, size_t frame, int size, Color color, int * array, size_t length) { */
+/* void DrawVerticalBargraph(game_t * game, size_t frame, int size, Color color, int * array, size_t length) { */
/* } */
-void draw_centered_text(game_t * game, size_t frame, int font_size, Color color, char * format, ...) {
+void DrawCenteredText(game_t * game, size_t frame, int font_size, Color color, char * format, ...) {
char buffer[TEXT_BUFFER_LIMIT];
float x = game->frame_x[frame], y = game->frame_y[frame];
va_list ap;