From 2be2d93b7fc39fa662320ec6e45fac45aad4f67d Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Thu, 18 Apr 2024 15:42:40 +0200 Subject: [PATCH] order --- src/config.c | 8 +++++--- src/config.h | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/config.c b/src/config.c index 55f0aa4..d86cc65 100644 --- a/src/config.c +++ b/src/config.c @@ -7,14 +7,16 @@ Config config = { .progname = "hpemung", + + .throttle = false, + .verbose = false, + .allow_shutdn = false, + .ui_scale = 3, .ui_font1 = "/usr/share/fonts/TTF/unifont.ttf", .ui_font2 = "/usr/share/fonts/TTF/unifont.ttf", .ui_font_size1 = 6, .ui_font_size2 = 4, - .throttle = false, - .verbose = false, - .allow_shutdn = false, .fn_rom = "rom", .fn_ram = "ram", diff --git a/src/config.h b/src/config.h index 27ffcf2..c5eea32 100644 --- a/src/config.h +++ b/src/config.h @@ -5,14 +5,16 @@ typedef struct { char* progname; + + bool throttle; + bool verbose; + bool allow_shutdn; + int ui_scale; char* ui_font1; char* ui_font2; int ui_font_size1; int ui_font_size2; - bool throttle; - bool verbose; - bool allow_shutdn; char* fn_rom; char* fn_ram;