summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg/cfg_u.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-02-01 21:31:21 +0100
committerSubv <subv2112@gmail.com>2015-02-12 15:25:35 +0100
commit8e2b248e05c99c9cf505a351bc9234cedd5fa3b4 (patch)
tree05f18714a93d28999c259f4cd86c261deaf659b2 /src/core/hle/service/cfg/cfg_u.cpp
parentMerge pull request #384 from neobrain/vertex_shader_debugger (diff)
downloadyuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.tar
yuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.tar.gz
yuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.tar.bz2
yuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.tar.lz
yuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.tar.xz
yuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.tar.zst
yuzu-8e2b248e05c99c9cf505a351bc9234cedd5fa3b4.zip
Diffstat (limited to '')
-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 4c5eac382..a65da90c5 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;