PSL1GHT/PS3 build fix (#13446)

This commit is contained in:
crystalct 2022-01-06 08:21:14 +01:00 committed by GitHub
parent f43b19db4f
commit 19d05db9ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -151,7 +151,7 @@ static void gfx_ctx_ps3_set_swap_interval(void *data, int interval)
static void gfx_ctx_ps3_check_window(void *data, bool *quit,
bool *resize, unsigned *width, unsigned *height)
{
gl_t *gl = data;
gl2_t *gl = data;
*quit = false;
*resize = false;

View File

@ -3461,6 +3461,10 @@ struct retro_core_option_definition
const char *default_value;
};
#ifdef __PS3__
#undef local
#endif
struct retro_core_options_intl
{
/* Pointer to an array of retro_core_option_definition structs

View File

@ -118,6 +118,7 @@ struct SceNetInAddr inet_aton(const char *ip_addr);
#if !defined(__PSL1GHT__) && defined(__PS3__)
#include <netex/libnetctl.h>
#include <netex/errno.h>
#else
#include <signal.h>
#endif