From c4fd16d925c48ab87edb53404ef64f3c552d2cdf Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Mon, 11 Mar 2019 07:21:43 +0100 Subject: [PATCH] Updated dll checksums for windows build --- src/defines.h | 2 +- src/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/defines.h b/src/defines.h index 8fa82c7..aa9e5c3 100644 --- a/src/defines.h +++ b/src/defines.h @@ -24,7 +24,7 @@ /* Checksums */ #define SO_LIBSTEAM_CHECKSUM 0x19ba253 -#define DLL_LIBSTEAM_CHECKSUM 0x19ba253 +#define DLL_LIBSTEAM_CHECKSUM 0x14e4709 /* Room/Map dimensions */ #define MAP_ROOM_WIDTH 16 diff --git a/src/main.c b/src/main.c index da8d6f6..f627573 100644 --- a/src/main.c +++ b/src/main.c @@ -1367,7 +1367,7 @@ validate_lib_checksum(void) { FILE *fp; #ifdef WIN32 - const char *file = "./libsteam_api.dll"; + const char *file = "./steam_api.dll"; unsigned int expected = DLL_LIBSTEAM_CHECKSUM; #else const char *file = "./libsteam_api.so";