mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
(PS3) Buildfix
This commit is contained in:
parent
f1ef1a6a59
commit
59a07d73b5
@ -30,6 +30,7 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "../../configuration.h"
|
||||
#include "../../runloop.h"
|
||||
#include "../../defines/ps3_defines.h"
|
||||
#include "../common/gl_common.h"
|
||||
@ -339,10 +340,11 @@ static void gfx_ctx_ps3_destroy(void *data)
|
||||
static void gfx_ctx_ps3_input_driver(void *data,
|
||||
const input_driver_t **input, void **input_data)
|
||||
{
|
||||
void *ps3input = input_ps3.init();
|
||||
settings_t *settings = config_get_ptr();
|
||||
void *ps3input = input_ps3.init(settings->input.joypad_driver);
|
||||
|
||||
*input = ps3input ? &input_ps3 : NULL;
|
||||
*input_data = ps3input;
|
||||
*input = ps3input ? &input_ps3 : NULL;
|
||||
*input_data = ps3input;
|
||||
}
|
||||
|
||||
static bool gfx_ctx_ps3_bind_api(void *data,
|
||||
|
Loading…
Reference in New Issue
Block a user