mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-26 18:53:24 +00:00
Make sure to set the block stream order flag for sane debugging. This bug really needs to get fixed.
This commit is contained in:
parent
2c8254d6c3
commit
ba36ca34fd
2 changed files with 2 additions and 0 deletions
|
@ -247,6 +247,7 @@ int main(int argc, char **argv) {
|
|||
if(format == eCompressionFormat_BPTC) {
|
||||
strcat(basename, "-bc7.png");
|
||||
} else if(format == eCompressionFormat_PVRTC) {
|
||||
cImg.SetBlockStreamOrder(false);
|
||||
strcat(basename, "-pvrtc.png");
|
||||
}
|
||||
|
||||
|
|
|
@ -253,6 +253,7 @@ int _tmain(int argc, _TCHAR* argv[])
|
|||
if(format == eCompressionFormat_BPTC) {
|
||||
strcat_s(basename, "-bc7.png");
|
||||
} else if(format == eCompressionFormat_PVRTC) {
|
||||
cImg.SetBlockStreamOrder(false);
|
||||
strcat_s(basename, "-pvrtc.png");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue