We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5b03d9 commit d1bfa9cCopy full SHA for d1bfa9c
rpcs3/Emu/System.cpp
@@ -785,9 +785,9 @@ bool Emulator::BootRsxCapture(const std::string& path)
785
786
const std::string lower = fmt::to_lower(path);
787
788
- if (lower.ends_with(".SAVESTAT.gz") || lower.ends_with(".SAVESTAT.zst"))
+ if (lower.ends_with(".gz") || lower.ends_with(".zst"))
789
{
790
- if (lower.ends_with(".SAVESTAT.gz"))
+ if (lower.ends_with(".gz"))
791
792
load.m_file_handler = make_compressed_serialization_file_handler(std::move(in_file));
793
}
0 commit comments