Remove seeding prng

This commit is contained in:
Abdelrahman Said 2024-08-18 15:49:17 +01:00
parent 50b8c6dd0a
commit 1adac24148

View File

@ -6,7 +6,6 @@
#include "shaders.h" #include "shaders.h"
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
@ -34,8 +33,6 @@ int main(void) {
return TINY_EXIT_ARENA_INIT_FAILED; return TINY_EXIT_ARENA_INIT_FAILED;
} }
srand(time(NULL));
Colour bg = {.r = 42, .g = 45, .b = 52, .a = 255}; Colour bg = {.r = 42, .g = 45, .b = 52, .a = 255};
Colour teal = {.r = 14, .g = 156, .b = 208, .a = 255}; Colour teal = {.r = 14, .g = 156, .b = 208, .a = 255};
Render render; Render render;