Removed clang warnings
This commit is contained in:
parent
f3c83606e2
commit
db21bb813f
3
src/db.h
3
src/db.h
|
@ -16,4 +16,5 @@ db_execute_stmnt(const char *stmnt,
|
|||
void
|
||||
db_close(sqlite3 **db);
|
||||
|
||||
#endif // DB_H_
|
||||
#endif // DB_H_
|
||||
|
||||
|
|
|
@ -34,4 +34,5 @@ io_load_file_buffer(char **dest, unsigned long *len, const char *filepath)
|
|||
|
||||
*len = (unsigned long) size;
|
||||
*dest = buffer;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -27,4 +27,5 @@ io_load_rwops(const char *path);
|
|||
void
|
||||
io_load_file_buffer(char **dest, unsigned long *len, const char *filepath);
|
||||
|
||||
#endif // IO_UTIL_H_
|
||||
#endif // IO_UTIL_H_
|
||||
|
||||
|
|
|
@ -53,6 +53,7 @@ int l_create_map(lua_State *L)
|
|||
static int
|
||||
l_print_info(lua_State *L)
|
||||
{
|
||||
UNUSED(L); // Compilers keep warning about L being unused
|
||||
debug(luaL_checkstring(L, 1));
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -31,4 +31,5 @@ get_random(unsigned int max)
|
|||
}
|
||||
|
||||
return rand() % (max + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@ sprite_render(Sprite *s, Camera *cam)
|
|||
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],
|
||||
&box,
|
||||
&s->clip,
|
||||
|
|
|
@ -34,4 +34,5 @@ texturecache_get(const char *path);
|
|||
void
|
||||
texturecache_close(void);
|
||||
|
||||
#endif // TEXTURECACHE_H_
|
||||
#endif // TEXTURECACHE_H_
|
||||
|
||||
|
|
Loading…
Reference in New Issue