(menu_setting.c) Add source setting

This commit is contained in:
twinaphex 2016-03-18 19:04:49 +01:00
parent 2af2b4eebf
commit e2fc8900b5

View File

@ -113,6 +113,16 @@ struct rarch_setting
struct
{
union
{
bool boolean;
int integer;
unsigned int unsigned_integer;
float fraction;
char string;
struct retro_keybind keybind;
} source;
union
{
bool *boolean;