From 7fe8190a0e625476453be2b316f76cc232d0d99e Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 22 Sep 2021 18:51:42 -0700 Subject: [PATCH] fix bad defines --- src/Silkworm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Silkworm.h b/src/Silkworm.h index 391502b..64b285f 100644 --- a/src/Silkworm.h +++ b/src/Silkworm.h @@ -125,10 +125,10 @@ typedef struct Silkworm_Rope #define SILKWORM_MINOR_VERSION 1 #define SILKWORM_PATCH_VERSION 0 #define SILKWORM_COMPILED_VERSION ( \ - (REFRESH_ABI_VERSION * 100 * 100 * 100) + \ - (REFRESH_MAJOR_VERSION * 100 * 100) + \ - (REFRESH_MINOR_VERSION * 100) + \ - (REFRESH_PATCH_VERSION) \ + (SILKWORM_ABI_VERSION * 100 * 100 * 100) + \ + (SILKWORM_MAJOR_VERSION * 100 * 100) + \ + (SILKWORM_MINOR_VERSION * 100) + \ + (SILKWORM_PATCH_VERSION) \ ) SILKWORMAPI void Silkworm_Init();