diff --git a/BeefLibs/corlib/src/Runtime.bf b/BeefLibs/corlib/src/Runtime.bf index 8d4b8eea..58c77f5e 100644 --- a/BeefLibs/corlib/src/Runtime.bf +++ b/BeefLibs/corlib/src/Runtime.bf @@ -323,7 +323,7 @@ namespace System public static void Assert(bool condition, String error) { if (!condition) - Internal.FatalError("Assert failed", 1); + Internal.FatalError(error, 1); } } }