mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-27 04:37:54 +00:00
rsx: Fix copypasta
This commit is contained in:
parent
5751b77688
commit
12b73c8bdc
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ namespace rsx
|
||||||
|
|
||||||
if (dst_dimensions.width == src_dimensions.width)
|
if (dst_dimensions.width == src_dimensions.width)
|
||||||
{
|
{
|
||||||
const auto optimal_height = std::max(dst_dimensions.width, src_dimensions.width);
|
const auto optimal_height = std::max(dst_dimensions.height, src_dimensions.height);
|
||||||
return { false, 0, dst_dimensions.width, optimal_height };
|
return { false, 0, dst_dimensions.width, optimal_height };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue