Mercurial > minori
diff include/core/config.h @ 318:3b355fa948c7
config: use TOML instead of INI
unfortunately, INI is not enough, and causes some paths including
semicolons to break with our current storage of the library folders.
so, I decided to switch to TOML which does support real arrays...
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 12 Jun 2024 05:25:41 -0400 |
parents | b1f4d1867ab1 |
children |
line wrap: on
line diff
--- a/include/core/config.h Wed Jun 12 04:07:10 2024 -0400 +++ b/include/core/config.h Wed Jun 12 05:25:41 2024 -0400 @@ -70,6 +70,6 @@ constexpr std::string_view CONFIG_DIR = "minori"; #endif -constexpr std::string_view CONFIG_NAME = "config.ini"; +constexpr std::string_view CONFIG_NAME = "config.toml"; #endif // MINORI_CORE_CONFIG_H_