Skip to content

Commit

Permalink
Fix broken logic for config.system.first_run
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaldaien committed Nov 29, 2024
1 parent f83ecbb commit d6cb3b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5501,8 +5501,10 @@ auto DeclKeybind =
return_to_skif->load (config.system.return_to_skif);
auto_load_asi_files->load (config.system.auto_load_asi_files);

if (version->load (config.system.version))
SK_RunOnce (
if (version->load (config.system.version))
config.system.first_run = false;
);

skif_autostop_behavior->load (config.skif.auto_stop_behavior);

Expand Down

0 comments on commit d6cb3b1

Please sign in to comment.