mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 16:20:39 +00:00
Reorder from lowest to highest sized variables
This commit is contained in:
parent
4a133144d5
commit
67ff372a38
@ -88,15 +88,15 @@ typedef struct menu_input
|
|||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
|
bool back;
|
||||||
|
bool pressed[2];
|
||||||
int16_t x;
|
int16_t x;
|
||||||
int16_t y;
|
int16_t y;
|
||||||
int16_t dx;
|
int16_t dx;
|
||||||
int16_t dy;
|
int16_t dy;
|
||||||
float accel;
|
|
||||||
bool pressed[2];
|
|
||||||
bool back;
|
|
||||||
unsigned ptr;
|
unsigned ptr;
|
||||||
unsigned counter;
|
unsigned counter;
|
||||||
|
float accel;
|
||||||
} pointer;
|
} pointer;
|
||||||
} menu_input_t;
|
} menu_input_t;
|
||||||
|
|
||||||
|
@ -90,17 +90,14 @@ struct rarch_setting_group_info
|
|||||||
|
|
||||||
struct rarch_setting
|
struct rarch_setting
|
||||||
{
|
{
|
||||||
|
enum setting_type browser_selection_type;
|
||||||
|
enum msg_hash_enums enum_idx;
|
||||||
|
enum msg_hash_enums enum_value_idx;
|
||||||
|
enum setting_type type;
|
||||||
|
|
||||||
bool dont_use_enum_idx_representation;
|
bool dont_use_enum_idx_representation;
|
||||||
bool enforce_minrange;
|
bool enforce_minrange;
|
||||||
bool enforce_maxrange;
|
bool enforce_maxrange;
|
||||||
|
|
||||||
const char *rounding_fraction;
|
|
||||||
const char *name;
|
|
||||||
const char *short_description;
|
|
||||||
const char *group;
|
|
||||||
const char *subgroup;
|
|
||||||
const char *parent_group;
|
|
||||||
const char *values;
|
|
||||||
|
|
||||||
uint8_t index;
|
uint8_t index;
|
||||||
uint8_t index_offset;
|
uint8_t index_offset;
|
||||||
@ -111,11 +108,19 @@ struct rarch_setting
|
|||||||
|
|
||||||
float step;
|
float step;
|
||||||
|
|
||||||
|
uint64_t flags;
|
||||||
|
uint64_t free_flags;
|
||||||
|
|
||||||
double min;
|
double min;
|
||||||
double max;
|
double max;
|
||||||
|
|
||||||
uint64_t flags;
|
const char *rounding_fraction;
|
||||||
uint64_t free_flags;
|
const char *name;
|
||||||
|
const char *short_description;
|
||||||
|
const char *group;
|
||||||
|
const char *subgroup;
|
||||||
|
const char *parent_group;
|
||||||
|
const char *values;
|
||||||
|
|
||||||
change_handler_t change_handler;
|
change_handler_t change_handler;
|
||||||
change_handler_t read_handler;
|
change_handler_t read_handler;
|
||||||
@ -176,12 +181,6 @@ struct rarch_setting
|
|||||||
const char *off_label;
|
const char *off_label;
|
||||||
const char *on_label;
|
const char *on_label;
|
||||||
} boolean;
|
} boolean;
|
||||||
|
|
||||||
enum setting_type browser_selection_type;
|
|
||||||
enum msg_hash_enums enum_idx;
|
|
||||||
enum msg_hash_enums enum_value_idx;
|
|
||||||
enum setting_type type;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rarch_setting_info
|
struct rarch_setting_info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user