Merge commit '3a7f96fd99528968c39b5be81db067ca018d432b' into dev

This commit is contained in:
SimoneN64
2024-09-18 20:42:08 +02:00
641 changed files with 31269 additions and 30646 deletions

View File

@@ -156,7 +156,7 @@ static int window_h;
static int paused = 0;
static int done = 0;
static int fpsdelay;
static SDL_bool streaming = SDL_TRUE;
static bool streaming = true;
static Uint8 *RawMooseData = NULL;
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
@@ -362,7 +362,7 @@ int main(int argc, char **argv)
nodelay = 1;
} else if (SDL_strcmp(argv[i], "--nostreaming") == 0) {
consumed = 1;
streaming = SDL_FALSE;
streaming = false;
} else if (SDL_strcmp(argv[i], "--scale") == 0) {
consumed = 2;
if (argv[i + 1]) {
@@ -524,7 +524,7 @@ int main(int argc, char **argv)
displayrect.h = (float)window_h;
/* Ignore key up events, they don't even get filtered */
SDL_SetEventEnabled(SDL_EVENT_KEY_UP, SDL_FALSE);
SDL_SetEventEnabled(SDL_EVENT_KEY_UP, false);
/* Main render loop */
frames = 0;