diff options
| author | lioncash <mathew1900@hotmail.com> | 2013-04-19 09:21:45 -0400 |
|---|---|---|
| committer | lioncash <mathew1900@hotmail.com> | 2013-04-19 09:21:45 -0400 |
| commit | d244bca1f5f210e03839d0e0a485fc5511ede2d6 (patch) | |
| tree | 7de5ce144373dcee73e460c89f379072c54f7f4f /Source/Core/DiscIO/Src/CompressedBlob.cpp | |
| parent | 47f1505499dd0ba8cd78c2d5ff3600c937d75236 (diff) | |
Fix a bunch of random typos in comments and logging.
Also update the comment headers for two functions in GCMemcard.cpp.
Diffstat (limited to 'Source/Core/DiscIO/Src/CompressedBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/CompressedBlob.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp index d7e291c68a..b469dedc9c 100644 --- a/Source/Core/DiscIO/Src/CompressedBlob.cpp +++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp @@ -288,10 +288,10 @@ bool DecompressBlobToFile(const char* infile, const char* outfile, CompressCB ca File::IOFile f(outfile, "wb"); if (!f) - { - delete reader; + { + delete reader; return false; - } + } const CompressedBlobHeader &header = reader->GetHeader(); u8* buffer = new u8[header.block_size]; |
