diff options
author | quou <quou@disroot.org> | 2025-01-02 16:03:09 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2025-01-02 16:03:09 +1100 |
commit | c22b015b9184cf468781b92015e2aed03cd9721a (patch) | |
tree | 3a34afa8754c1d542edb61861461af5bc3ca539c | |
parent | b03109dbb087bd441c0e3905753f3dd97d44d7b8 (diff) |
fix warnings
-rw-r--r-- | video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3703,11 +3703,11 @@ Asset* Texture_Loader::load( Pack_File* f ) { char magic[4]; - void* data; int w, h; size_t size; Texture_Format fmt; (void)a; + (void)s; pack_read(f, magic, 4); pack_read(f, &w, 4); pack_read(f, &h, 4); |