Skip to content

Commit

Permalink
- menue_options.h: auto-calculate structs
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhofen committed Dec 6, 2021
1 parent 39b930b commit 8eba953
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/gui/widget/menue_options.h
@@ -1,27 +1,27 @@
#define OPTIONS_OFF0_ON1_OPTION_COUNT 2
const CMenuOptionChooser::keyval OPTIONS_OFF0_ON1_OPTIONS[OPTIONS_OFF0_ON1_OPTION_COUNT] =
const CMenuOptionChooser::keyval OPTIONS_OFF0_ON1_OPTIONS[] =
{
{ 0, LOCALE_OPTIONS_OFF },
{ 1, LOCALE_OPTIONS_ON }
};
#define OPTIONS_OFF0_ON1_OPTION_COUNT (sizeof(OPTIONS_OFF0_ON1_OPTIONS)/sizeof(CMenuOptionChooser::keyval))

#define OPTIONS_OFF1_ON0_OPTION_COUNT 2
const CMenuOptionChooser::keyval OPTIONS_OFF1_ON0_OPTIONS[OPTIONS_OFF1_ON0_OPTION_COUNT] =
const CMenuOptionChooser::keyval OPTIONS_OFF1_ON0_OPTIONS[] =
{
{ 1, LOCALE_OPTIONS_OFF },
{ 0, LOCALE_OPTIONS_ON }
};
#define OPTIONS_OFF1_ON0_OPTION_COUNT (sizeof(OPTIONS_OFF1_ON0_OPTIONS)/sizeof(CMenuOptionChooser::keyval))

#define MESSAGEBOX_NO_YES_OPTION_COUNT 2
const CMenuOptionChooser::keyval MESSAGEBOX_NO_YES_OPTIONS[MESSAGEBOX_NO_YES_OPTION_COUNT] =
const CMenuOptionChooser::keyval MESSAGEBOX_NO_YES_OPTIONS[] =
{
{ 0, LOCALE_MESSAGEBOX_NO },
{ 1, LOCALE_MESSAGEBOX_YES }
};
#define MESSAGEBOX_NO_YES_OPTION_COUNT (sizeof(MESSAGEBOX_NO_YES_OPTIONS)/sizeof(CMenuOptionChooser::keyval))

#define OPTIONS_START0_STOP1_OPTION_COUNT 2
const CMenuOptionChooser::keyval OPTIONS_START0_STOP1_OPTIONS[OPTIONS_START0_STOP1_OPTION_COUNT] =
const CMenuOptionChooser::keyval OPTIONS_START0_STOP1_OPTIONS[] =
{
{ 0, LOCALE_OPTIONS_START },
{ 1, LOCALE_OPTIONS_STOP }
};
#define OPTIONS_START0_STOP1_OPTION_COUNT (sizeof(OPTIONS_START0_STOP1_OPTIONS)/sizeof(CMenuOptionChooser::keyval))

0 comments on commit 8eba953

Please sign in to comment.