1
0
mirror of synced 2025-02-17 11:18:32 +01:00

Fix initial value of IsVoiceOn

This commit is contained in:
esuo1198 2024-03-18 02:39:25 +09:00
parent 891adfaaa1
commit b7bb0ad616

View File

@ -21,7 +21,7 @@ namespace GameDatabase.Entities
public uint[] GenericInfoFlgArray { get; set; } = Array.Empty<uint>();
public short OptionSetting { get; set; }
public int NotesPosition { get; set; }
public bool IsVoiceOn { get; set; }
public bool IsVoiceOn { get; set; } = true;
public bool IsSkipOn { get; set; }
public string DifficultyPlayedArray { get; set; } = "[]";
public uint DifficultyPlayedCourse { get; set; }