1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

ToString fix

This commit is contained in:
Brian Fiete 2021-01-26 06:34:42 -08:00
parent fdcbb55ff2
commit 5c05b15b37

View file

@ -198,7 +198,7 @@ namespace System
public override void ToString(String strBuffer)
{
char8[128] outBuff = ?;
int len = ToString((float)this, &outBuff);
int len = ToString((double)this, &outBuff);
strBuffer.Append(&outBuff, len);
}
@ -211,11 +211,5 @@ namespace System
}
NumberFormatter.NumberToString(format, (double)this, formatProvider, outString);
}
[Test]
public static void Test()
{
}
}
}