https://bugs.winehq.org/show_bug.cgi?id=57888
Bug ID: 57888 Summary: Incorrect decimal fixed-point multiplication Product: Wine Version: 10.0 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: lxndrkrlv@gmail.com Distribution: ---
Sample code in .NET 4.8 ----------------------------- decimal x1 = 100m / 3m; decimal x2 = 1.5m; Console.WriteLine($"{x1} * {x2} = {x1 * x2}"); Console.WriteLine($"{x2} * {x1} = {x2 * x1}"); ------------------------------ Output under Windows: 33,333333333333333333333333333 * 1,5 = 50,000000000000000000000000000 1,5 * 33,333333333333333333333333333 = 50,000000000000000000000000000 ------------------------------ Output under WINE 33.333333333333333333333333333 * 1.5 = 50.000000000000000000000000000 1.5 * 33.333333333333333333333333333 = 2.4631024914413974438736297979 ------------------------------