don't use exact integer types where it's not necessary

This commit is contained in:
2025-04-17 09:45:27 +02:00
parent 4bba7bda9f
commit 1ee8c69d1b
4 changed files with 38 additions and 40 deletions

View File

@@ -2,7 +2,6 @@
#include <SDL_error.h>
#include <SDL_events.h>
#include <SDL_ttf.h>
#include <stdint.h>
#include "error.h"
#include "game/game.h"
@@ -45,7 +44,7 @@ static void update(void) {
}
// entry-point of the application
int32_t main(int32_t argc, char** argv) {
int main(int argc, char** argv) {
(void)argc, (void)argv;
init();