Don't allow PNG files to fail to open in Texture_Zoo test

This commit is contained in:
baldurk
2020-04-01 14:10:57 +01:00
parent 2cc9dd81d9
commit 9372fa879a
+2 -2
View File
@@ -443,8 +443,8 @@ class Texture_Zoo():
status, self.controller = ret
# Some packed formats can't be opened, allow that
if status == rd.ReplayStatus.ImageUnsupported:
rdtest.log.comment("Couldn't open {} - unsupported".format(file.name))
if status == rd.ReplayStatus.ImageUnsupported and 'dds' in file.name:
rdtest.log.print("Couldn't open {} - unsupported".format(file.name))
continue
if status != rd.ReplayStatus.Succeeded: