1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

rsx: Copypasta fix (#8289)

This commit is contained in:
xddxd 2020-05-25 22:07:11 +03:00 committed by GitHub
parent 865180e63e
commit f56b362769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1092,7 +1092,7 @@ namespace rsx
if (scale_y < 1.f)
{
float dst_y = in_y * scale_x;
float dst_y = in_y * scale_y;
in_y = static_cast<u16>(std::floor(dst_y) / scale_y);
}