update separators to be chars instead of strings

This commit is contained in:
jacekpoz 2024-04-25 19:17:23 +02:00
parent a95e79ac35
commit a918f155b4
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -136,7 +136,7 @@ CONFIG(Difficulty,
VAR_BOOL_D(.general, sampleMatchPlaybackRate, false)
)
SECTION(editor,
VAR_LIST_SEP(.editor, bookmarks, uint, ",")
VAR_LIST_SEP(.editor, bookmarks, uint, ',')
VAR_FLOAT(.editor, distanceSpacing)
VAR_UINT(.editor, beatDivisor)
VAR_UINT(.editor, gridSize)
@ -150,7 +150,7 @@ CONFIG(Difficulty,
VAR_STRING(.metadata, creator)
VAR_STRING(.metadata, version)
VAR_STRING(.metadata, source)
VAR_LIST_SEP_P(.metadata, tags, std::string, " ", "Tags")
VAR_LIST_SEP_P(.metadata, tags, std::string, ' ', "Tags:")
VAR_UINT(.metadata, beatmapID)
VAR_UINT(.metadata, beatmapSetID)
)