mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Fix sloppy format matching test
This commit is contained in:
parent
4fe17fcecf
commit
44fe6f6d39
1 changed files with 1 additions and 1 deletions
|
@ -1767,7 +1767,7 @@ namespace rsx
|
|||
if (!valid_range())
|
||||
return false;
|
||||
|
||||
if ((gcm_format & format) != format)
|
||||
if (format && gcm_format != format)
|
||||
return false;
|
||||
|
||||
if (!width && !height && !depth && !mipmaps)
|
||||
|
|
Loading…
Add table
Reference in a new issue