diff options
author | t895 <[email protected]> | 2023-11-27 14:56:25 -0500 |
---|---|---|
committer | t895 <[email protected]> | 2023-11-27 23:46:29 -0500 |
commit | b8f66c9412e2306691ffb9f8a9d232198ebd13f4 (patch) | |
tree | ed658b4ae7ec1a039ab46587f7da785e22074dbd /src/frontend_common | |
parent | 090ea0281c34bd8d4932c9dc7ef24da5e9e35759 (diff) | |
download | yuzu-mainline-b8f66c9412e2306691ffb9f8a9d232198ebd13f4.tar.gz yuzu-mainline-b8f66c9412e2306691ffb9f8a9d232198ebd13f4.zip |
android: Multi directory UI
Diffstat (limited to 'src/frontend_common')
-rw-r--r-- | src/frontend_common/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp index 7474cb0f9..1a0491c2c 100644 --- a/src/frontend_common/config.cpp +++ b/src/frontend_common/config.cpp @@ -924,12 +924,14 @@ std::string Config::AdjustOutputString(const std::string& string) { // Windows requires that two forward slashes are used at the start of a path for unmapped // network drives so we have to watch for that here +#ifndef ANDROID if (string.substr(0, 2) == "//") { boost::replace_all(adjusted_string, "//", "/"); adjusted_string.insert(0, "/"); } else { boost::replace_all(adjusted_string, "//", "/"); } +#endif // Needed for backwards compatibility with QSettings deserialization for (const auto& special_character : special_characters) { |