Build: Fixed some MSVC warnings in various parts of the code.

This commit is contained in:
Subv 2018-06-20 11:39:10 -05:00
parent be1f5dedfb
commit a3d82ef5d9
12 changed files with 24 additions and 22 deletions

View file

@ -328,7 +328,7 @@ bool AudRenU::IsFeatureSupported(AudioFeatures feature, u32_le revision) const {
u32_be version_num = (revision - Common::MakeMagic('R', 'E', 'V', '0')); // Byte swap
switch (feature) {
case AudioFeatures::Splitter:
return version_num >= 2;
return version_num >= 2u;
default:
return false;
}