mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
rarch_setting - Reduce size of flag variables
This commit is contained in:
parent
53a1ff446d
commit
31f3588f00
1 changed files with 3 additions and 2 deletions
|
@ -183,8 +183,6 @@ struct rarch_setting
|
|||
bool boolean;
|
||||
} original_value;
|
||||
|
||||
uint32_t flags;
|
||||
uint32_t free_flags;
|
||||
uint32_t index_offset;
|
||||
uint32_t size;
|
||||
unsigned bind_type;
|
||||
|
@ -197,7 +195,10 @@ struct rarch_setting
|
|||
enum msg_hash_enums enum_value_idx;
|
||||
enum setting_type type;
|
||||
|
||||
uint16_t flags;
|
||||
|
||||
int16_t offset_by;
|
||||
uint8_t free_flags;
|
||||
uint8_t index;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue