X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=main.c;h=b7332c5beb00b665ecc65f118c8ee847ed847ef7;hp=a2d2e930d68bb080481b451ea98d86c9dc6fc245;hb=a71a81a281923a4dba48a01e1c448d3a44b60bf0;hpb=ca648507d88cc3e3f0ee264e1bb94f3e8c31192e diff --git a/main.c b/main.c index a2d2e93..b7332c5 100644 --- a/main.c +++ b/main.c @@ -26,12 +26,13 @@ #include #include #include +#include #include "font.h" #include "args.h" #include "common.h" -#include "config.h" +#include "vorconfig.h" #include "dust.h" #include "file.h" #include "float.h" @@ -136,6 +137,18 @@ extern int optind, opterr, optopt; // ************************************* FUNCS +#ifdef nanosleep +void +tiny_sleep() { + struct timespec t; + t.tv_sec = 0; + t.tv_nsec = 1; + nanosleep(&t, 0); +} +#else +#define tiny_sleep() +#endif + void init_engine_dots() { int i; @@ -835,6 +848,8 @@ gameloop() { state = HIGH_SCORE_DISPLAY; state_timeout = 400; } + + tiny_sleep(); } }