mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-20 07:30:24 +01:00
gpu2: fix v_med3_f32
This commit is contained in:
parent
0877d3f1cd
commit
e80955742a
|
|
@ -735,7 +735,7 @@ float32_t v_med3_f32(float32_t a, float32_t b, float32_t c) {
|
|||
}
|
||||
|
||||
if (v_max3_f32(a, b, c) == a) {
|
||||
return v_max_f32(a, b);
|
||||
return v_max_f32(b, c);
|
||||
}
|
||||
|
||||
if (v_max3_f32(a, b, c) == b) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue