summaryrefslogtreecommitdiff
path: root/Userland/Games/Chess
diff options
context:
space:
mode:
authornetworkException <git@nwex.de>2021-08-21 16:14:30 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-22 01:32:25 +0200
commit938051feb8d9340657251082f3fd4abffd57b813 (patch)
tree7d71e8c592b4915dcb4930fde8ba6739f60450f1 /Userland/Games/Chess
parent54bbe52b5143954dcdb700207de43343e5102ab8 (diff)
downloadserenity-938051feb8d9340657251082f3fd4abffd57b813.zip
Everywhere: Use Core::ConfigFile::AllowWriting::Yes to allow writing
Diffstat (limited to 'Userland/Games/Chess')
-rw-r--r--Userland/Games/Chess/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Chess/main.cpp b/Userland/Games/Chess/main.cpp
index e4679f75ab..b883eb9a98 100644
--- a/Userland/Games/Chess/main.cpp
+++ b/Userland/Games/Chess/main.cpp
@@ -26,7 +26,7 @@ int main(int argc, char** argv)
auto window = GUI::Window::construct();
auto& widget = window->set_main_widget<ChessWidget>();
- RefPtr<Core::ConfigFile> config = Core::ConfigFile::get_for_app("Chess");
+ RefPtr<Core::ConfigFile> config = Core::ConfigFile::get_for_app("Chess", Core::ConfigFile::AllowWriting::Yes);
if (pledge("stdio rpath wpath cpath recvfd sendfd thread proc exec", nullptr) < 0) {
perror("pledge");