From afb76aa9709ddb919f50c3555a6098c48cbc3ef0 Mon Sep 17 00:00:00 2001 From: Sergey Stepanov Date: Tue, 17 Oct 2023 17:07:57 +0300 Subject: [PATCH] Add note about empty nested config values --- pkg/config/config.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkg/config/config.yaml b/pkg/config/config.yaml index 30737b08..59a123bf 100644 --- a/pkg/config/config.yaml +++ b/pkg/config/config.yaml @@ -1,5 +1,20 @@ # The main config file +# Note. +# Be aware that when this configuration is being overwritten +# by another configuration, any empty nested part +# in the further configurations will reset (empty out) all the values. +# For example: +# the main config second config result +# ... ... ... +# list: list: list: +# gba: gba: gba: +# lib: mgba_libretro lib: "" +# roms: [ "gba", "gbc" ] roms: [] +# ... ... +# +# So do not leave empty nested keys. + # for the compatibility purposes version: 3