Skip to content

Commit

Permalink
config: Fix receive_untested_updates using the wrong default
Browse files Browse the repository at this point in the history
  • Loading branch information
Exzap committed Nov 13, 2024
1 parent 6665835 commit 719c631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/CemuConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void CemuConfig::Load(XMLConfigParser& parser)
fullscreen_menubar = parser.get("fullscreen_menubar", false);
feral_gamemode = parser.get("feral_gamemode", false);
check_update = parser.get("check_update", check_update);
receive_untested_updates = parser.get("receive_untested_updates", check_update);
receive_untested_updates = parser.get("receive_untested_updates", receive_untested_updates);
save_screenshot = parser.get("save_screenshot", save_screenshot);
did_show_vulkan_warning = parser.get("vk_warning", did_show_vulkan_warning);
did_show_graphic_pack_download = parser.get("gp_download", did_show_graphic_pack_download);
Expand Down

0 comments on commit 719c631

Please sign in to comment.