From f5bbc4b6c6ced8c5ffb160e2a1acca8e3f6795eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20My=C5=9Bli=C5=84ski?= Date: Wed, 27 May 2020 20:15:28 +0200 Subject: [PATCH] Correct int64.MinValue --- BeefLibs/corlib/src/Int64.bf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BeefLibs/corlib/src/Int64.bf b/BeefLibs/corlib/src/Int64.bf index 227484ab..2b884650 100644 --- a/BeefLibs/corlib/src/Int64.bf +++ b/BeefLibs/corlib/src/Int64.bf @@ -12,8 +12,7 @@ namespace System } public const int64 MaxValue = 0x7FFFFFFFFFFFFFFFL; - //public const long MinValue = -0x8000000000000000L; - public const int64 MinValue = -0x7FFFFFFFFFFFFFFFL; //TODO: Should be one lower! + public const int64 MinValue = -0x8000000000000000L; public static int operator<=>(Int64 a, Int64 b) {