Merge pull request #265 from retro-wertz/vsuni
vsuni: simplify game database and other fixes
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <libretro.h>
|
#include <libretro.h>
|
||||||
|
|
||||||
void set_dipswitch_variables(unsigned *index, struct retro_variable vars[]);
|
void set_dipswitch_variables(unsigned *index, struct retro_variable *vars);
|
||||||
void update_dipswitch(void);
|
void update_dipswitch(void);
|
||||||
|
|
||||||
extern retro_environment_t environ_cb;
|
extern retro_environment_t environ_cb;
|
||||||
|
|||||||
@@ -784,7 +784,7 @@ static void set_variables(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* append dipswitches to core options if available */
|
/* append dipswitches to core options if available */
|
||||||
set_dipswitch_variables(&index_core, &retro_vars[0]);
|
set_dipswitch_variables(&index_core, retro_vars);
|
||||||
|
|
||||||
/* NULL terminate */
|
/* NULL terminate */
|
||||||
retro_vars[index_core] = vars_empty;
|
retro_vars[index_core] = vars_empty;
|
||||||
|
|||||||
Reference in New Issue
Block a user