More style fixes

FossilOrigin-Name: c634a689e76e7c60fb8b685ea40cb9993a86f23474d1ead7159eb331e98f1110
This commit is contained in:
Jonathan Schleifer 2025-03-29 17:13:40 +00:00
parent d3dc40de33
commit a838f496b1
39 changed files with 536 additions and 582 deletions

View file

@ -18,10 +18,10 @@
#define min(a, b) (((a) < (b)) ? (a) : (b))
#define rnd(max) (rand() % (max))
#define rndreset() (srand(1))
#define rndtime() \
{ \
for (int i = 0; i < (lastmillis & 0xF); i++) \
rnd(i + 1); \
#define rndtime() \
{ \
for (int i = 0; i < (lastmillis & 0xF); i++) \
rnd(i + 1); \
}
#ifndef OF_WINDOWS