aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/cfg
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2015-02-01 15:31:21 -0500
committerGravatar Subv <subv2112@gmail.com>2015-02-12 09:25:35 -0500
commit8e2b248e05c99c9cf505a351bc9234cedd5fa3b4 (patch)
tree05f18714a93d28999c259f4cd86c261deaf659b2 /src/core/hle/service/cfg
parentf990728ad44246e5eca0e5ace32ea47f68e280c3 (diff)
Build: Fixed some warnings
Diffstat (limited to 'src/core/hle/service/cfg')
-rw-r--r--src/core/hle/service/cfg/cfg_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cfg/cfg_u.cpp b/src/core/hle/service/cfg/cfg_u.cpp
index 4c5eac38..a65da90c 100644
--- a/src/core/hle/service/cfg/cfg_u.cpp
+++ b/src/core/hle/service/cfg/cfg_u.cpp
@@ -85,7 +85,7 @@ static void GetCountryCodeID(Service::Interface* self) {
// The following algorithm will fail if the first country code isn't 0.
DEBUG_ASSERT(country_codes[0] == 0);
- for (size_t id = 0; id < country_codes.size(); ++id) {
+ for (u16 id = 0; id < country_codes.size(); ++id) {
if (country_codes[id] == country_code) {
country_code_id = id;
break;