From a7d255dba612bb1047bc939b30bfac0adc718a9c Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sat, 24 May 2025 01:37:23 +0100 Subject: [PATCH] Reformat --- dod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dod.c b/dod.c index 5d74a2f..3d62f98 100644 --- a/dod.c +++ b/dod.c @@ -169,7 +169,7 @@ void init_scale_wanderer(Scale *scale, XOR256State *state) { } void init_scale_zone(Scale *scale, XOR256State *state) { - scale->width = wapp_prng_xorshift_256p(state) % ((u64)HALF_WIDTH - MIN_ZONE_DIM) + MIN_ZONE_DIM; + scale->width = wapp_prng_xorshift_256p(state) % ((u64)HALF_WIDTH - MIN_ZONE_DIM) + MIN_ZONE_DIM; scale->height = wapp_prng_xorshift_256p(state) % ((u64)HALF_HEIGHT - MIN_ZONE_DIM) + MIN_ZONE_DIM; }