mirror of
https://github.com/azahar-emu/azahar.git
synced 2025-03-05 18:17:41 +01:00

Previously we were letting vadd flush the value to positive 0, but there are cases where this behavior is wrong, for example, vsub: -0 - +0 = -0 vadd: -0 + +0 = +0 Now we'll flush the value to +0 inside vsub, and then negate it.