activa -Wextra -Wpedantic i neteja warnings

This commit is contained in:
2026-05-19 18:49:51 +02:00
parent 7bd4d4d114
commit be1a9a1d9b
8 changed files with 44 additions and 11 deletions
+1 -1
View File
@@ -58,6 +58,6 @@ auto SDL_AppEvent(void *appstate, SDL_Event *event) -> SDL_AppResult {
return static_cast<Director *>(appstate)->handleEvent(event);
}
void SDL_AppQuit(void *appstate, SDL_AppResult result) {
void SDL_AppQuit(void *appstate, SDL_AppResult /*result*/) {
delete static_cast<Director *>(appstate);
}