summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/CompressedBlob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DiscIO/Src/CompressedBlob.cpp')
-rw-r--r--Source/Core/DiscIO/Src/CompressedBlob.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp
index eb340ea216..387a0bee47 100644
--- a/Source/Core/DiscIO/Src/CompressedBlob.cpp
+++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp
@@ -168,14 +168,7 @@ bool CompressFileToBlob(const char* infile, const char* outfile, u32 sub_type,
if (sub_type == 1)
{
- if (PanicYesNo("WARNING - Scrubbing Wii disc %s will permanently remove garbage data.\n"
- "This should be 100%% OK, but you have the option to opt out.\n\n\n"
- "Would you like to scrub it?", infile))
- {
- if (!DiscScrubber::Scrub(infile, callback, arg))
- return false;
- }
- else
+ if (!DiscScrubber::Scrub(infile, callback, arg))
return false;
}
@@ -246,7 +239,7 @@ bool CompressFileToBlob(const char* infile, const char* outfile, u32 sub_type,
if (retval != Z_OK)
{
- PanicAlert("Deflate failed");
+ ERROR_LOG(DISCIO, "Deflate failed");
goto cleanup;
}