nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

commit 58deba64173679253e72495451853a668baf2452
parent 2a38070d44ed01753c51067bbd7f007e4b74bd6b
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Wed, 13 Aug 2025 09:24:14 +0100

Correct OS detection for sleep function

Diffstat:
Msrc/utils/sleep.h | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/utils/sleep.h b/src/utils/sleep.h @@ -2,7 +2,9 @@ STATIC void msleep(int); -#if defined(WIN32) +#if defined(_WIN32) + +#include <windows.h> #define NISSY_CANSLEEP true