diff include/core/config.h @ 101:c537996cf67b

*: multitude of config changes 1. theme is now configurable from the settings menu (but you have to restart for it to apply) 2. config is now stored in an INI file, with no method of conversion from json (this repo is private-ish anyway)
author Paper <mrpapersonic@gmail.com>
date Fri, 03 Nov 2023 14:06:02 -0400
parents c69230dc2b5d
children b315f3759c56
line wrap: on
line diff
--- a/include/core/config.h	Fri Nov 03 09:43:04 2023 -0400
+++ b/include/core/config.h	Fri Nov 03 14:06:02 2023 -0400
@@ -34,12 +34,8 @@
 		} anilist;
 };
 
-#define WIDEIFY_EX(x) L##x
-#define WIDEIFY(x)    WIDEIFY_EX(x)
 #define CONFIG_DIR    "minori"
-#define CONFIG_WDIR   WIDEIFY(CONFIG_DIR)
-#define CONFIG_NAME   "config.json"
-#define CONFIG_WNAME  WIDEIFY(CONFIG_NAME)
+#define CONFIG_NAME   "config.ini"
 
 #define MAX_LINE_LENGTH 256