From cdd0e195285098ba00200ab60f2bb1d77328a37b Mon Sep 17 00:00:00 2001 From: Ramen2X Date: Mon, 9 Dec 2024 14:39:10 -0500 Subject: [PATCH] lib: fix 64-bit integer typedefs for old msvc --- lib/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types.h b/lib/types.h index f09c15d..4bd6f5f 100644 --- a/lib/types.h +++ b/lib/types.h @@ -38,8 +38,8 @@ typedef unsigned short uint16_t; typedef short int16_t; typedef unsigned int uint32_t; typedef int int32_t; -typedef unsigned long long uint64_t; -typedef long long int64_t; +typedef unsigned __int64 uint64_t; +typedef __int64 int64_t; #else #include #endif