From 0d9c7a4cc28ccf7b6e2af12dabf521274cacee4b Mon Sep 17 00:00:00 2001 From: Clansty Date: Tue, 24 Sep 2024 20:17:27 +0800 Subject: [PATCH] [F] Default string value --- AquaMai/Config.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AquaMai/Config.cs b/AquaMai/Config.cs index 7cd7c8e6..927cf329 100644 --- a/AquaMai/Config.cs +++ b/AquaMai/Config.cs @@ -39,10 +39,10 @@ namespace AquaMai public bool TestProof { get; set; } public bool HideSelfMadeCharts { get; set; } public bool SelectionDetail { get; set; } - public string CustomVersionString { get; set; } - public string CustomPlaceName { get; set; } - public string ExecOnIdle { get; set; } - public string ExecOnEntry { get; set; } + public string CustomVersionString { get; set; } = ""; + public string CustomPlaceName { get; set; } = ""; + public string ExecOnIdle { get; set; } = ""; + public string ExecOnEntry { get; set; } = ""; } public class PerformanceConfig