scheduler

This commit is contained in:
2025-12-01 08:47:09 -06:00
parent 8e4c60baf3
commit 5971924785
5 changed files with 3 additions and 204 deletions

View File

@@ -19,9 +19,7 @@
#define STB_DS_IMPLEMENTATION
#include "stb_ds.h"
#include "jsffi.h"
#include "cell.h"
#include "timer.h"
#ifdef TRACY_ENABLE
#include <tracy/TracyC.h>
@@ -45,7 +43,6 @@
#define QOP_IMPLEMENTATION
#include "qop.h"
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
int tracy_profiling_enabled = 0;
@@ -985,11 +982,6 @@ int main(int argc, char **argv)
#endif
}
if (!SDL_Init(SDL_INIT_EVENTS | SDL_INIT_GAMEPAD)) {
printf("CRITICAL ERROR: %s\n", SDL_GetError());
exit(1);
}
#ifdef TRACY_ENABLE
tracy_profiling_enabled = profile_enabled;
#endif