mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-11 06:25:26 +00:00
Fix C11 typedef redefinition issues
This commit is contained in:
parent
e85f11ea38
commit
2db0c21f52
@ -19,8 +19,7 @@ typedef struct InputListElement_t
|
||||
int16_t state[36];
|
||||
} InputListElement;
|
||||
|
||||
typedef struct retro_core_t _retro_core_t;
|
||||
extern _retro_core_t current_core;
|
||||
extern struct retro_core_t current_core;
|
||||
extern struct retro_callbacks retro_ctx;
|
||||
|
||||
typedef bool(*LoadStateFunction)(const void*, size_t);
|
||||
|
@ -173,7 +173,6 @@ static void runahead_clear_variables(void)
|
||||
static void runahead_check_for_gui(void)
|
||||
{
|
||||
/* Hack: If we were in the GUI, force a resync. */
|
||||
bool is_dirty = false;
|
||||
bool is_alive, is_focused = false;
|
||||
uint64_t frame_count = 0;
|
||||
|
||||
|
@ -24,12 +24,9 @@
|
||||
|
||||
static int port_map[16];
|
||||
|
||||
typedef struct retro_core_t _retro_core_t;
|
||||
typedef struct retro_callbacks retro_callbacks_t;
|
||||
|
||||
static char *secondary_library_path;
|
||||
static dylib_t secondary_module;
|
||||
static _retro_core_t secondary_core;
|
||||
static struct retro_core_t secondary_core;
|
||||
static struct retro_callbacks secondary_callbacks;
|
||||
|
||||
extern retro_ctx_load_content_info_t *load_content_info;
|
||||
|
Loading…
x
Reference in New Issue
Block a user