diff options
author | networkException <git@nwex.de> | 2021-08-21 16:14:30 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-22 01:32:25 +0200 |
commit | 938051feb8d9340657251082f3fd4abffd57b813 (patch) | |
tree | 7d71e8c592b4915dcb4930fde8ba6739f60450f1 /Userland/Games/2048 | |
parent | 54bbe52b5143954dcdb700207de43343e5102ab8 (diff) | |
download | serenity-938051feb8d9340657251082f3fd4abffd57b813.zip |
Everywhere: Use Core::ConfigFile::AllowWriting::Yes to allow writing
Diffstat (limited to 'Userland/Games/2048')
-rw-r--r-- | Userland/Games/2048/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/2048/main.cpp b/Userland/Games/2048/main.cpp index 22a5d5fd94..eb7b9aeccf 100644 --- a/Userland/Games/2048/main.cpp +++ b/Userland/Games/2048/main.cpp @@ -37,7 +37,7 @@ int main(int argc, char** argv) auto window = GUI::Window::construct(); - auto config = Core::ConfigFile::get_for_app("2048"); + auto config = Core::ConfigFile::get_for_app("2048", Core::ConfigFile::AllowWriting::Yes); size_t board_size = config->read_num_entry("", "board_size", 4); u32 target_tile = config->read_num_entry("", "target_tile", 2048); |