mirror of
https://github.com/thepigeongenerator/tetris_clone.git
synced 2025-12-17 14:05:45 +01:00
don't use exact integer types where it's not necessary
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user