diff options
| author | Glenn Rice <glennricster@gmail.com> | 2010-08-01 04:09:59 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2010-08-01 04:09:59 +0000 |
| commit | 2c6f851bbaea134d850636eed35535334f5a305a (patch) | |
| tree | 4a0411efbac4c7ebcac256c563721aff88f64952 /Source/Core/DiscIO/Src/CompressedBlob.cpp | |
| parent | 949fec41ca0b4e4ea06d36f8bbc22de15fa759dc (diff) | |
Clean up and fix some issues with the dialogs for compression and decompression of iso and gcm images. Also added a confirmation to overwrite existing files.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6024 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/CompressedBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/CompressedBlob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp index 9523115bd7..e822d45e6c 100644 --- a/Source/Core/DiscIO/Src/CompressedBlob.cpp +++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp @@ -227,7 +227,7 @@ bool CompressFileToBlob(const char* infile, const char* outfile, u32 sub_type, if (inpos != 0) ratio = (int)(100 * position / inpos); char temp[512]; - sprintf(temp, "%i of %i blocks. compression ratio %i%%", i, header.num_blocks, ratio); + sprintf(temp, "%i of %i blocks. Compression ratio %i%%", i, header.num_blocks, ratio); callback(temp, (float)i / (float)header.num_blocks, arg); } |
