Skip to content

Commit d1bfa9c

Browse files
committed
RSX: Fix RSX Captures
1 parent e5b03d9 commit d1bfa9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rpcs3/Emu/System.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,9 +785,9 @@ bool Emulator::BootRsxCapture(const std::string& path)
785785

786786
const std::string lower = fmt::to_lower(path);
787787

788-
if (lower.ends_with(".SAVESTAT.gz") || lower.ends_with(".SAVESTAT.zst"))
788+
if (lower.ends_with(".gz") || lower.ends_with(".zst"))
789789
{
790-
if (lower.ends_with(".SAVESTAT.gz"))
790+
if (lower.ends_with(".gz"))
791791
{
792792
load.m_file_handler = make_compressed_serialization_file_handler(std::move(in_file));
793793
}

0 commit comments

Comments
 (0)