diff options
author | t895 <clombardo169@gmail.com> | 2023-12-29 07:08:12 +0100 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2023-12-30 21:11:36 +0100 |
commit | 24a78dba319fc1183a47ec94e6a61add5225eb75 (patch) | |
tree | f96e07b981aabd610f46df72c5cb8f9a7f288c22 /src | |
parent | android: Migrate in-game overlay settings to ini (diff) | |
download | yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.tar yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.tar.gz yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.tar.bz2 yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.tar.lz yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.tar.xz yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.tar.zst yuzu-24a78dba319fc1183a47ec94e6a61add5225eb75.zip |
Diffstat (limited to '')
-rw-r--r-- | src/frontend_common/config.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frontend_common/config.h b/src/frontend_common/config.h index e73cf6929..0c4d505b8 100644 --- a/src/frontend_common/config.h +++ b/src/frontend_common/config.h @@ -213,9 +213,8 @@ private: const std::optional<bool>& use_global); void WriteString(const std::string& key, const std::string& value); - inline static std::array<char, 19> special_characters = {'!', '#', '$', '%', '^', '&', '*', - '|', ';', '\'', '\"', ',', '<', '.', - '>', '?', '`', '~', '='}; + inline static std::array<char, 18> special_characters = { + '!', '#', '$', '%', '^', '&', '*', '|', ';', '\'', '\"', ',', '<', '>', '?', '`', '~', '='}; struct ConfigArray { std::string name; |