Browse Source

mingw compat

master
user 4 years ago
parent
commit
ebf612394a
  1. 8
      colours.c

8
colours.c

@ -1,9 +1,11 @@
#include "colours.h" #include "colours.h"
struct colour get_random_color(unsigned int seed) { struct colour get_random_color(unsigned int seed) {
int red = rand_r(&seed) % 255; srand(seed);
int blue = rand_r(&seed) % 255;
int green = rand_r(&seed) % 255; int red = rand() % 255;
int blue = rand() % 255;
int green = rand() % 255;
struct colour col; struct colour col;
col.r = red; col.r = red;

Loading…
Cancel
Save