Removed warnings for the moment.

This commit is contained in:
Ulysse Cura 2026-04-12 21:02:17 +02:00
parent 80d304afeb
commit 54204542c1
1 changed files with 4 additions and 0 deletions

View File

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