summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorMartin Lindhe <martin@ubique.se>2015-09-25 14:33:39 +0200
committerMartin Lindhe <martin@ubique.se>2015-09-29 23:11:09 +0200
commitbafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481 (patch)
tree75060eef7ea204ed8c82b732bdd4ca61fe034a32 /src/core/hle
parentMerge pull request #1160 from lioncash/clang (diff)
downloadyuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.tar
yuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.tar.gz
yuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.tar.bz2
yuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.tar.lz
yuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.tar.xz
yuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.tar.zst
yuzu-bafb7afba2d07b0ee2e7ecd4fb8e6a699cebc481.zip
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() {
char16_t country_name_buffer[16][0x40] = {};
for (size_t i = 0; i < 16; ++i) {
- auto size = Common::UTF8ToUTF16("Gensokyo").copy(country_name_buffer[i], 0x40);
+ Common::UTF8ToUTF16("Gensokyo").copy(country_name_buffer[i], 0x40);
}
// 0x000B0001 - Localized names for the profile Country
res = CreateConfigInfoBlk(0x000B0001, sizeof(country_name_buffer), 0xE, country_name_buffer);