This commit is contained in:
2024-08-03 13:33:03 +03:00
parent cf809176b6
commit 11a4a19cc3
4 changed files with 160 additions and 63 deletions

View File

@@ -23,7 +23,7 @@ int randomX(const clock_t initClock) {
const unsigned int seed = clock() - initClock;
for (int i = randomInt(0, 100, seed); ; i++) {
x = randomInt(PL_BRD_XS, PL_BRD_XE, i);
if (x % 2 == 0)
if (x % 2 != 0)
break;
}