diff options
| author | JosJuice <josjuice@gmail.com> | 2016-06-25 18:45:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-25 18:45:53 +0200 |
| commit | 10682dbf5843bcf55cda7db4bc4e5acaee556648 (patch) | |
| tree | e3c3fba5f61c0bf3316a257d7d791849a7fd45de /Source/Core/DiscIO/VolumeWad.cpp | |
| parent | 64cf74abb4158ffabe8b5dce3c1a4d42a82b054f (diff) | |
| parent | 1878605d77d38861307027ae5bcd6ca131c8266e (diff) | |
Merge pull request #3934 from JosJuice/comment-formatting
Undo some comment formatting changes from b5104a7
Diffstat (limited to 'Source/Core/DiscIO/VolumeWad.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWad.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index fe9da2db50..a6cb48ca77 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -89,8 +89,7 @@ std::string CVolumeWAD::GetUniqueID() const std::string CVolumeWAD::GetMakerID() const { char temp[2] = {1}; - // Some weird channels use 0x0000 in place of the MakerID, so we need a check - // there + // Some weird channels use 0x0000 in place of the MakerID, so we need a check there if (!Read(0x198 + m_tmd_offset, 2, (u8*)temp) || temp[0] == 0 || temp[1] == 0) return "00"; |
