This commit is contained in:
Gwenhael Le Moine 2024-04-18 15:42:40 +02:00
parent 4d7d83328f
commit 2be2d93b7f
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 10 additions and 6 deletions

View file

@ -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",

View file

@ -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;