(XDK) Build fixes

This commit is contained in:
twinaphex 2013-01-02 17:23:31 +01:00
parent c1a0222f74
commit d0c4de9635
2 changed files with 10 additions and 1 deletions

View File

@ -181,7 +181,7 @@ struct settings
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
float axis_threshold;
int joypad_map[MAX_PLAYERS];
enum dpad_emu_enums dpad_emulation[MAX_PLAYERS];
unsigned dpad_emulation[MAX_PLAYERS];
#ifdef RARCH_CONSOLE
unsigned currently_selected_controller_no;
unsigned map_dpad_to_stick;

View File

@ -321,6 +321,15 @@ void xdk_d3d_init_fbo(xdk_d3d_video_t *d3d)
}
#endif
static bool xdk_d3d_set_shader(void *data, enum rarch_shader_type type, const char *path)
{
(void)data;
(void)type;
(void)path;
return false;
}
void xdk_d3d_generate_pp(D3DPRESENT_PARAMETERS *d3dpp, const video_info_t *video)
{
xdk_d3d_video_t *d3d = (xdk_d3d_video_t*)driver.video_data;