# HG changeset patch # User Michael Pavone # Date 1699679882 28800 # Node ID 3e064001594af219e31ffcf73edd8707589e4d6b # Parent d6a207861cc83785650b8cf9a3122909d9b8dfe0 Better spacing in firmware settings diff -r d6a207861cc8 -r 3e064001594a nuklear_ui/blastem_nuklear.c --- a/nuklear_ui/blastem_nuklear.c Fri Nov 10 13:45:23 2023 -0800 +++ b/nuklear_ui/blastem_nuklear.c Fri Nov 10 21:18:02 2023 -0800 @@ -2339,7 +2339,7 @@ { if (nk_begin(context, "Firmware", nk_rect(0, 0, render_width(), render_height()), 0)) { uint32_t desired_width = context->style.font->height * 10; - nk_layout_row_static(context, context->style.font->height, desired_width, 2); + nk_layout_row_static(context, context->style.font->height * 1.25f, desired_width, 2); static const char* exts[] = {"md", "bin", "smd"}; 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);