From 6c4ee1753aa2b9e620138801b479365b0569317c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 16 Feb 2014 15:30:18 -0500 Subject: Fix some vertical alignments ie. uses spaces for alignment. --- Source/Core/DiscIO/FileSystemGCWii.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Source/Core/DiscIO/FileSystemGCWii.cpp') diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index cc09138f3e..c8d5c2b198 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -121,8 +121,8 @@ bool CFileSystemGCWii::ExportFile(const char* _rFullPath, const char* _rExportFi bool CFileSystemGCWii::ExportApploader(const char* _rExportFolder) const { u32 AppSize = Read32(0x2440 + 0x14);// apploader size - AppSize += Read32(0x2440 + 0x18); // + trailer size - AppSize += 0x20; // + header size + AppSize += Read32(0x2440 + 0x18); // + trailer size + AppSize += 0x20; // + header size DEBUG_LOG(DISCIO,"AppSize -> %x", AppSize); std::vector buffer(AppSize); @@ -150,8 +150,8 @@ u32 CFileSystemGCWii::GetBootDOLSize() const // Iterate through the 7 code segments for (u8 i = 0; i < 7; i++) { - offset = Read32(DolOffset + 0x00 + i * 4); - size = Read32(DolOffset + 0x90 + i * 4); + offset = Read32(DolOffset + 0x00 + i * 4); + size = Read32(DolOffset + 0x90 + i * 4); if (offset + size > DolSize) DolSize = offset + size; } @@ -159,8 +159,8 @@ u32 CFileSystemGCWii::GetBootDOLSize() const // Iterate through the 11 data segments for (u8 i = 0; i < 11; i++) { - offset = Read32(DolOffset + 0x1c + i * 4); - size = Read32(DolOffset + 0xac + i * 4); + offset = Read32(DolOffset + 0x1c + i * 4); + size = Read32(DolOffset + 0xac + i * 4); if (offset + size > DolSize) DolSize = offset + size; } -- cgit v1.2.3