summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeVerifier.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-27 10:09:53 -0400
committerLioncash <mathew1800@gmail.com>2019-05-27 10:09:55 -0400
commita1f77fd14b16fb91ab4d313c3d02e76532ade578 (patch)
treee6a91bbf4e89404804bf7d66130b56456cf07ebe /Source/Core/DiscIO/VolumeVerifier.cpp
parent204af41e735c7c107d228e043488c2f891a03547 (diff)
DiscIO/VolumeVerifier: Make use of unused variable in CheckMisc()
This variable wasn't being utilized when comments indicate that it probably should be.
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeVerifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp
index 6b70382044..7f339911f9 100644
--- a/Source/Core/DiscIO/VolumeVerifier.cpp
+++ b/Source/Core/DiscIO/VolumeVerifier.cpp
@@ -601,7 +601,7 @@ void VolumeVerifier::CheckMisc()
const Severity severity =
m_volume.GetVolumeType() == Platform::WiiWAD ? Severity::Low : Severity::High;
// i18n: This is "common" as in "shared", not the opposite of "uncommon"
- AddProblem(Severity::Low, GetStringT("This title is set to use an invalid common key."));
+ AddProblem(severity, GetStringT("This title is set to use an invalid common key."));
}
if (common_key == 1 && region != Region::NTSC_K)