DiscIO/VolumeVerifier: Make use of unused variable in CheckMisc()
This variable wasn't being utilized when comments indicate that it probably should be.
This commit is contained in:
parent
204af41e73
commit
a1f77fd14b
|
@ -601,7 +601,7 @@ void VolumeVerifier::CheckMisc()
|
||||||
const Severity severity =
|
const Severity severity =
|
||||||
m_volume.GetVolumeType() == Platform::WiiWAD ? Severity::Low : Severity::High;
|
m_volume.GetVolumeType() == Platform::WiiWAD ? Severity::Low : Severity::High;
|
||||||
// i18n: This is "common" as in "shared", not the opposite of "uncommon"
|
// 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)
|
if (common_key == 1 && region != Region::NTSC_K)
|
||||||
|
|
Loading…
Reference in New Issue