Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Add32To96()

static bool System.Decimal.DecCalc.Add32To96 ( ref Buf12 bufNum,
uint value )
inlinestaticprivate

Definition at line 704 of file Decimal.cs.

705 {
706 if ((bufNum.Low64 += value) < value && ++bufNum.U2 == 0)
707 {
708 return false;
709 }
710 return true;
711 }

References System.Runtime.Serialization.Dictionary, and System.value.

Referenced by System.Decimal.DecCalc.OverflowUnscale(), and System.Decimal.DecCalc.VarDecDiv().