[O] Move SkipVersionCheck to Fix

pull/46/head
Clansty 2024-07-09 16:30:30 +08:00
parent 5772ff78e6
commit 60a0c8726e
2 changed files with 10 additions and 3 deletions

View File

@ -42,9 +42,11 @@ ExecOnEntry=""
ExtendTimer=true
# Save immediate after playing a song
ImmediateSave=true
# Allow login with higher data version
SkipVersionCheck=true
[Performance]
# Disable some useless delays to speed up the game boot process
ImproveLoadSpeed=false
[Fix]
# Allow login with higher data version
SkipVersionCheck=true

View File

@ -8,6 +8,7 @@ namespace AquaMai
public UXConfig UX { get; set; }
public CheatConfig Cheat { get; set; }
public PerformanceConfig Performance { get; set; }
public FixConfig Fix { get; set; }
public class CheatConfig
{
@ -30,7 +31,6 @@ namespace AquaMai
public bool SkipEventInfo { get; set; }
public bool ImmediateSave { get; set; }
public bool LoadLocalBga { get; set; }
public bool SkipVersionCheck { get; set; }
public string CustomVersionString { get; set; }
public string ExecOnIdle { get; set; }
public string ExecOnEntry { get; set; }
@ -40,5 +40,10 @@ namespace AquaMai
{
public bool ImproveLoadSpeed { get; set; }
}
public class FixConfig
{
public bool SkipVersionCheck { get; set; }
}
}
}