From a918f155b44eab4a9920950d113fcfa2ff60dd96 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 25 Apr 2024 19:17:23 +0200 Subject: [PATCH] update separators to be chars instead of strings --- include/config_def.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config_def.hpp b/include/config_def.hpp index 733f14f..b137b24 100644 --- a/include/config_def.hpp +++ b/include/config_def.hpp @@ -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) )