diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-10-28 13:41:34 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-10-28 13:41:42 -0400 |
| commit | d1d70c1a7d506519318920e8736be6a1b4febb41 (patch) | |
| tree | b43e93cd1d22be6b95333d6254bb680ee529558b /Source/Core/DiscIO/FileSystemGCWii.cpp | |
| parent | 64b09582c67d8dedfb8d7582f3fd90b4b849f20f (diff) | |
FileSystemGCWii: Shorten some string concatenations
Just does it all on one line instead.
Diffstat (limited to 'Source/Core/DiscIO/FileSystemGCWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileSystemGCWii.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index 727440500e..d39d803e11 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -132,8 +132,7 @@ bool CFileSystemGCWii::ExportApploader(const std::string& _rExportFolder) const std::vector<u8> buffer(AppSize); if (m_rVolume->Read(0x2440, AppSize, &buffer[0])) { - std::string exportName(_rExportFolder); - exportName += "/apploader.img"; + std::string exportName(_rExportFolder + "/apploader.img"); File::IOFile AppFile(exportName, "wb"); if (AppFile) @@ -185,8 +184,7 @@ bool CFileSystemGCWii::ExportDOL(const std::string& _rExportFolder) const std::vector<u8> buffer(DolSize); if (m_rVolume->Read(DolOffset, DolSize, &buffer[0])) { - std::string exportName(_rExportFolder); - exportName += "/boot.dol"; + std::string exportName(_rExportFolder + "/boot.dol"); File::IOFile DolFile(exportName, "wb"); if (DolFile) |
