summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar bunnei2015-09-29 22:00:27 -0400
committerGravatar bunnei2015-09-29 22:00:27 -0400
commita67df5ad94b206c2f2377ba90173f5f1fbd9d74e (patch)
treee6fddc8bf18920a672de751a834effe0683a1d25 /src/core/hle
parentMerge pull request #1171 from LittleWhite-tb/qt-no-refresh-nologo (diff)
parentfix some xcode 7.0 warnings (diff)
downloadyuzu-a67df5ad94b206c2f2377ba90173f5f1fbd9d74e.tar.gz
yuzu-a67df5ad94b206c2f2377ba90173f5f1fbd9d74e.tar.xz
yuzu-a67df5ad94b206c2f2377ba90173f5f1fbd9d74e.zip
Merge pull request #1172 from martinlindhe/fix-warnings
Fix some xcode 7 (llvm) warnings
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/cfg/cfg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cfg/cfg.cpp b/src/core/hle/service/cfg/cfg.cpp
index 715a9b8c3..56986a49e 100644
--- a/src/core/hle/service/cfg/cfg.cpp
+++ b/src/core/hle/service/cfg/cfg.cpp
@@ -345,7 +345,7 @@ ResultCode FormatConfig() {
345 345
346 char16_t country_name_buffer[16][0x40] = {}; 346 char16_t country_name_buffer[16][0x40] = {};
347 for (size_t i = 0; i < 16; ++i) { 347 for (size_t i = 0; i < 16; ++i) {
348 auto size = Common::UTF8ToUTF16("Gensokyo").copy(country_name_buffer[i], 0x40); 348 Common::UTF8ToUTF16("Gensokyo").copy(country_name_buffer[i], 0x40);
349 } 349 }
350 // 0x000B0001 - Localized names for the profile Country 350 // 0x000B0001 - Localized names for the profile Country
351 res = CreateConfigInfoBlk(0x000B0001, sizeof(country_name_buffer), 0xE, country_name_buffer); 351 res = CreateConfigInfoBlk(0x000B0001, sizeof(country_name_buffer), 0xE, country_name_buffer);