summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeWad.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2016-06-25 18:07:10 +0200
committerJosJuice <josjuice@gmail.com>2016-06-25 18:07:10 +0200
commit1878605d77d38861307027ae5bcd6ca131c8266e (patch)
treee3c3fba5f61c0bf3316a257d7d791849a7fd45de /Source/Core/DiscIO/VolumeWad.cpp
parent64cf74abb4158ffabe8b5dce3c1a4d42a82b054f (diff)
Undo some comment formatting changes from b5104a7
Diffstat (limited to 'Source/Core/DiscIO/VolumeWad.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeWad.cpp3
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";