From 5346e791bcba13f1e018d59514c57c610b2d0f0b Mon Sep 17 00:00:00 2001 From: Stevoisiak Date: Sat, 28 Feb 2015 21:42:16 -0500 Subject: [PATCH] VolumeWad: change titlever to title_version --- Source/Core/DiscIO/VolumeWad.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index ad19645d21..1dc746ea4d 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -60,9 +60,9 @@ IVolume::ECountry CVolumeWAD::GetCountry() const if (country_code == 2) // SYSMENU { - u16 titlever = 0; - Read(m_tmd_offset + 0x01dc, 2, (u8*)&titlever); - country_code = GetSysMenuRegion(Common::swap16(titlever)); + u16 title_version = 0; + Read(m_tmd_offset + 0x01dc, 2, (u8*)&title_version); + country_code = GetSysMenuRegion(Common::swap16(title_version)); } return CountrySwitch(country_code);