Removed clang warnings

This commit is contained in:
Linus Probert 2018-05-06 06:19:59 +02:00
parent f3c83606e2
commit db21bb813f
7 changed files with 12 additions and 6 deletions

View File

@ -16,4 +16,5 @@ db_execute_stmnt(const char *stmnt,
void void
db_close(sqlite3 **db); db_close(sqlite3 **db);
#endif // DB_H_ #endif // DB_H_

View File

@ -34,4 +34,5 @@ io_load_file_buffer(char **dest, unsigned long *len, const char *filepath)
*len = (unsigned long) size; *len = (unsigned long) size;
*dest = buffer; *dest = buffer;
} }

View File

@ -27,4 +27,5 @@ io_load_rwops(const char *path);
void void
io_load_file_buffer(char **dest, unsigned long *len, const char *filepath); io_load_file_buffer(char **dest, unsigned long *len, const char *filepath);
#endif // IO_UTIL_H_ #endif // IO_UTIL_H_

View File

@ -53,6 +53,7 @@ int l_create_map(lua_State *L)
static int static int
l_print_info(lua_State *L) l_print_info(lua_State *L)
{ {
UNUSED(L); // Compilers keep warning about L being unused
debug(luaL_checkstring(L, 1)); debug(luaL_checkstring(L, 1));
return 0; return 0;
} }

View File

@ -31,4 +31,5 @@ get_random(unsigned int max)
} }
return rand() % (max + 1); return rand() % (max + 1);
} }

View File

@ -122,7 +122,7 @@ sprite_render(Sprite *s, Camera *cam)
cameraPos.x, cameraPos.y, s->dim.width, s->dim.height cameraPos.x, cameraPos.y, s->dim.width, s->dim.height
}; };
if ((s->clip.w && s->clip.h) || s->angle || s->flip != SDL_FLIP_NONE) { if ((s->clip.w && s->clip.h) || s->angle != 0 || s->flip != SDL_FLIP_NONE) {
texture_render_clip_ex(s->textures[s->texture_index], texture_render_clip_ex(s->textures[s->texture_index],
&box, &box,
&s->clip, &s->clip,

View File

@ -34,4 +34,5 @@ texturecache_get(const char *path);
void void
texturecache_close(void); texturecache_close(void);
#endif // TEXTURECACHE_H_ #endif // TEXTURECACHE_H_