Skip to content

Commit

Permalink
misc: ConfigurationFileFormat version 68
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Mar 6, 2025
1 parent 551d2c1 commit 44632e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ConfigurationFileFormat
/// <summary>
/// The current version of the file format
/// </summary>
public const int CurrentVersion = 67;
public const int CurrentVersion = 68;

/// <summary>
/// Version of the configuration file format
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,8 @@ in _migrations.OrderBy(x => x.Key))
(65, static cff => cff.UpdateCheckerType = cff.CheckUpdatesOnStart ? UpdaterType.PromptAtStartup : UpdaterType.Off),
(66, static cff => cff.DisableInputWhenOutOfFocus = false),
(67, static cff => cff.FocusLostActionType = cff.DisableInputWhenOutOfFocus ? FocusLostType.BlockInput : FocusLostType.DoNothing)
// 68 was the version that added per-game configs; the file structure did not change
// the version was increased so external tools could know that your Ryujinx version has per-game config capabilities.
);
}
}

0 comments on commit 44632e5

Please sign in to comment.