summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/CompressedBlob.cpp
diff options
context:
space:
mode:
authorlioncash <mathew1900@hotmail.com>2013-04-19 09:21:45 -0400
committerlioncash <mathew1900@hotmail.com>2013-04-19 09:21:45 -0400
commitd244bca1f5f210e03839d0e0a485fc5511ede2d6 (patch)
tree7de5ce144373dcee73e460c89f379072c54f7f4f /Source/Core/DiscIO/Src/CompressedBlob.cpp
parent47f1505499dd0ba8cd78c2d5ff3600c937d75236 (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.cpp6
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];