diff --git a/BeefLibs/corlib/src/Type.bf b/BeefLibs/corlib/src/Type.bf index 08b7c865..731752d2 100644 --- a/BeefLibs/corlib/src/Type.bf +++ b/BeefLibs/corlib/src/Type.bf @@ -1126,6 +1126,8 @@ namespace System.Reflection (*(float*)&mValue).ToString(strBuffer); case typeof(double): (*(double*)&mValue).ToString(strBuffer); + case typeof(uint64), typeof(uint): + (*(uint64*)&mValue).ToString(strBuffer); default: mValue.ToString(strBuffer); } diff --git a/IDE/mintest/minlib/src/System/Type.bf b/IDE/mintest/minlib/src/System/Type.bf index 08b7c865..731752d2 100644 --- a/IDE/mintest/minlib/src/System/Type.bf +++ b/IDE/mintest/minlib/src/System/Type.bf @@ -1126,6 +1126,8 @@ namespace System.Reflection (*(float*)&mValue).ToString(strBuffer); case typeof(double): (*(double*)&mValue).ToString(strBuffer); + case typeof(uint64), typeof(uint): + (*(uint64*)&mValue).ToString(strBuffer); default: mValue.ToString(strBuffer); }