mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Cleanups
This commit is contained in:
parent
484fff5e28
commit
b75f242a7f
@ -96,15 +96,18 @@
|
|||||||
|
|
||||||
#define MAX_ARGS 32
|
#define MAX_ARGS 32
|
||||||
|
|
||||||
typedef struct content_stream
|
typedef struct content_stream content_stream_t;
|
||||||
|
typedef struct content_information_ctx content_information_ctx_t;
|
||||||
|
|
||||||
|
struct content_stream
|
||||||
{
|
{
|
||||||
uint32_t a;
|
uint32_t a;
|
||||||
const uint8_t *b;
|
const uint8_t *b;
|
||||||
size_t c;
|
size_t c;
|
||||||
uint32_t crc;
|
uint32_t crc;
|
||||||
} content_stream_t;
|
};
|
||||||
|
|
||||||
typedef struct content_information_ctx
|
struct content_information_ctx
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -125,7 +128,7 @@ typedef struct content_information_ctx
|
|||||||
bool check_firmware_before_loading;
|
bool check_firmware_before_loading;
|
||||||
|
|
||||||
struct string_list *temporary_content;
|
struct string_list *temporary_content;
|
||||||
} content_information_ctx_t;
|
};
|
||||||
|
|
||||||
static struct string_list *temporary_content = NULL;
|
static struct string_list *temporary_content = NULL;
|
||||||
static bool _content_is_inited = false;
|
static bool _content_is_inited = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user