reset main function to include parameters

This commit is contained in:
2025-01-13 00:17:10 +01:00
parent dde1be55d3
commit 33fef67e3b

View File

@@ -2,6 +2,7 @@
#include <SDL.h> #include <SDL.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
@@ -67,7 +68,7 @@ void stop(void) {
} }
// entry point of the application // entry point of the application
int main(void) { int32_t main(int32_t argc, char** argv) {
init(); init();
while (playing) while (playing)