From c5246541a92cff966105cd08ec1218e3da287e7c Mon Sep 17 00:00:00 2001 From: h0neybadger Date: Mon, 4 Jan 2021 23:04:04 +0100 Subject: [PATCH] Fix switch target chiaki.conf format --- switch/src/settings.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/switch/src/settings.cpp b/switch/src/settings.cpp index f5edf1f..8cb5264 100644 --- a/switch/src/settings.cpp +++ b/switch/src/settings.cpp @@ -210,9 +210,8 @@ int Settings::WriteFile() config_file << "[" << it->first << "]\n" << "host_addr = \"" << it->second.GetHostAddr() << "\"\n" - << "target = " << it->second.GetChiakiTarget() << "\"\n"; + << "target = \"" << it->second.GetChiakiTarget() << "\"\n"; - config_file << "target = \"" << it->second.psn_account_id << "\"\n"; if(it->second.video_resolution) config_file << "video_resolution = \"" << this->ResolutionPresetToString(this->GetVideoResolution(&it->second))