X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=roguelike.c;h=7caaec9dd194a2d6219909a1856766e04c749950;hb=7d71ffdb2d5d0466c6daac495207c5c38fa3d5fe;hp=afe73cece0e22c0d5fdced77b306ec591a9d6e44;hpb=b0722216897c1ec277caf6b2462fe5c1b4f5eca2;p=plomrogue diff --git a/roguelike.c b/roguelike.c index afe73ce..7caaec9 100644 --- a/roguelike.c +++ b/roguelike.c @@ -12,7 +12,7 @@ uint16_t rrand(char use_seed, uint32_t new_seed) { // Pseudo-random number generator (LGC algorithm). Use instead of rand() to ensure portable predictability. - static uint32_t seed = 0; + static uint32_t seed; if (0 != use_seed) seed = new_seed; seed = ((seed * 1103515245) + 12345) % 2147483648; // Values as recommended by POSIX.1-2001 (see rand(3)). @@ -69,7 +69,6 @@ void growshrink_active_window (struct WinMeta * win_meta, char change) { struct Map init_map (uint32_t seed) { // Initialize map with some experimental start values. - rrand(1, seed); struct Map map; map.width = 64; map.height = 64; @@ -197,6 +196,7 @@ int main (int argc, char *argv[]) { break; default: exit(EXIT_FAILURE); } } + rrand(1, seed); struct World world; init_keybindings(&world);