fix bad defines

main
cosmonaut 2021-09-22 18:51:42 -07:00
parent 11b0a53f40
commit 7fe8190a0e
1 changed files with 4 additions and 4 deletions

View File

@ -125,10 +125,10 @@ typedef struct Silkworm_Rope
#define SILKWORM_MINOR_VERSION 1 #define SILKWORM_MINOR_VERSION 1
#define SILKWORM_PATCH_VERSION 0 #define SILKWORM_PATCH_VERSION 0
#define SILKWORM_COMPILED_VERSION ( \ #define SILKWORM_COMPILED_VERSION ( \
(REFRESH_ABI_VERSION * 100 * 100 * 100) + \ (SILKWORM_ABI_VERSION * 100 * 100 * 100) + \
(REFRESH_MAJOR_VERSION * 100 * 100) + \ (SILKWORM_MAJOR_VERSION * 100 * 100) + \
(REFRESH_MINOR_VERSION * 100) + \ (SILKWORM_MINOR_VERSION * 100) + \
(REFRESH_PATCH_VERSION) \ (SILKWORM_PATCH_VERSION) \
) )
SILKWORMAPI void Silkworm_Init(); SILKWORMAPI void Silkworm_Init();