changeset 2247:08a16de0e4cb

Fix settings save path of TMSS ROM setting
author Michael Pavone <pavone@retrodev.com>
date Thu, 24 Nov 2022 00:54:18 -0800
parents 0e927fce8941
children f7e2e11f1214
files nuklear_ui/blastem_nuklear.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nuklear_ui/blastem_nuklear.c	Thu Nov 24 00:43:10 2022 -0800
+++ b/nuklear_ui/blastem_nuklear.c	Thu Nov 24 00:54:18 2022 -0800
@@ -2177,7 +2177,7 @@
 		uint32_t desired_width = context->style.font->height * 10;
 		nk_layout_row_static(context, context->style.font->height, desired_width, 2);
 		static const char* exts[] = {"md", "bin", "smd"};
-		settings_path(context, "TMSS ROM", "ui\0save_path\0", "tmss.md", exts, 3);
+		settings_path(context, "TMSS ROM", "system\0tmss_path\0", "tmss.md", exts, 3);
 		settings_path(context, "US CD BIOS", "system\0scd_bios_us\0", "cdbios.md", exts, 3);
 		settings_path(context, "JP CD BIOS", "system\0scd_bios_jp\0", "cdbios.md", exts, 3);
 		settings_path(context, "EU CD BIOS", "system\0scd_bios_eu\0", "cdbios.md", exts, 3);