order
This commit is contained in:
parent
4d7d83328f
commit
2be2d93b7f
2 changed files with 10 additions and 6 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue