From 54204542c14305a28b5b0f7d4303a685565126ac Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Sun, 12 Apr 2026 21:02:17 +0200 Subject: [PATCH] Removed warnings for the moment. --- src/texture_manager.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/texture_manager.c b/src/texture_manager.c index eee2f8c..7874fc0 100644 --- a/src/texture_manager.c +++ b/src/texture_manager.c @@ -23,6 +23,10 @@ inline void destroy_texture(texture_t *texture) inline void draw_texture(const texture_t *texture, const rect_t *src_rect, const rect_t *dst_rect, bool flip) { + (void)texture; + (void)src_rect; + (void)dst_rect; + (void)flip; //display_subimage(texture->image, src_rect, dst_rect, flip); }