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); }