mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-05 02:57:59 +08:00
[O] Move SkipVersionCheck to Fix
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user