summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeGC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeGC.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp
index ef0e56a21d..57303b13e7 100644
--- a/Source/Core/DiscIO/VolumeGC.cpp
+++ b/Source/Core/DiscIO/VolumeGC.cpp
@@ -92,11 +92,11 @@ int CVolumeGC::GetRevision() const
if (!m_pReader)
return 0;
- u8 Revision;
- if (!Read(7, 1, &Revision))
+ u8 revision;
+ if (!Read(7, 1, &revision))
return 0;
- return Revision;
+ return revision;
}
std::vector<std::string> CVolumeGC::GetNames() const