mirror of https://github.com/hykilpikonna/AquaDX
[O] Move SkipVersionCheck to Fix
parent
5772ff78e6
commit
60a0c8726e
|
@ -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
|
||||
|
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue