Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rsx: zip and unzip rsx captures #14808

Merged
merged 2 commits into from
Nov 10, 2023
Merged

rsx: zip and unzip rsx captures #14808

merged 2 commits into from
Nov 10, 2023

Conversation

Megamouse
Copy link
Contributor

  • zips rsx captures to .gz before saving them
  • unzips rsx captures if necessary
  • Add GUI filters for file selection and drag&drop

@Megamouse Megamouse merged commit 840455b into RPCS3:master Nov 10, 2023
6 checks passed
@@ -717,6 +718,16 @@ bool Emulator::BootRsxCapture(const std::string& path)
load.m_file_handler = make_uncompressed_serialization_file_handler(std::move(in_file));
load.set_reading_state();

if (fmt::to_lower(path).ends_with(".gz"))
{
load.data = unzip(load.data);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is broken after #14784, it needs proper implementation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants