From a1f77fd14b16fb91ab4d313c3d02e76532ade578 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 27 May 2019 10:09:53 -0400 Subject: [PATCH] DiscIO/VolumeVerifier: Make use of unused variable in CheckMisc() This variable wasn't being utilized when comments indicate that it probably should be. --- Source/Core/DiscIO/VolumeVerifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)