setting_list.h - get rid of placeholder padding hack in struct

This commit is contained in:
twinaphex 2020-08-20 19:30:25 +02:00
parent b3ec942646
commit 75d925cd3f
2 changed files with 0 additions and 7 deletions

View File

@ -18230,7 +18230,6 @@ void menu_setting_free(rarch_setting_t *setting)
(*&list)[pos].flags = 0; \
(*&list)[pos].free_flags = 0; \
(*&list)[pos].min = 0.0; \
(*&list)[pos].placeholder = 0; \
(*&list)[pos].max = 0.0; \
(*&list)[pos].rounding_fraction = NULL; \
(*&list)[pos].name = NULL; \

View File

@ -114,12 +114,6 @@ struct rarch_setting_group_info
struct rarch_setting
{
double min;
/* TODO/FIXME - nasty hack needed for 'suspected' MSVC 2010 x64 Release -
* split min/max to work around MSVC 2010 x64 bug that
* causes crashes due to stack misalignment in or near
* setting_string_setting'
*/
char placeholder;
double max;
uint64_t flags;