mirror of
https://github.com/libretro/RetroArch
synced 2025-04-11 00:44:20 +00:00
runloop.h header include cleanup - don't include retro_miscellaneous.h
This commit is contained in:
parent
1b29d41661
commit
9b329ddb56
23
runloop.h
23
runloop.h
@ -18,7 +18,6 @@
|
|||||||
#define __RETROARCH_RUNLOOP_H
|
#define __RETROARCH_RUNLOOP_H
|
||||||
|
|
||||||
#include <boolean.h>
|
#include <boolean.h>
|
||||||
#include <retro_miscellaneous.h>
|
|
||||||
#include <retro_common_api.h>
|
#include <retro_common_api.h>
|
||||||
|
|
||||||
#define runloop_cmd_triggered(trigger_input, id) (BIT64_GET(trigger_input, id))
|
#define runloop_cmd_triggered(trigger_input, id) (BIT64_GET(trigger_input, id))
|
||||||
@ -133,27 +132,27 @@ typedef struct global
|
|||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
char savefile[PATH_MAX_LENGTH];
|
char savefile[4096];
|
||||||
char savestate[PATH_MAX_LENGTH];
|
char savestate[4096];
|
||||||
char cheatfile[PATH_MAX_LENGTH];
|
char cheatfile[4096];
|
||||||
char ups[PATH_MAX_LENGTH];
|
char ups[4096];
|
||||||
char bps[PATH_MAX_LENGTH];
|
char bps[4096];
|
||||||
char ips[PATH_MAX_LENGTH];
|
char ips[4096];
|
||||||
char remapfile[PATH_MAX_LENGTH];
|
char remapfile[4096];
|
||||||
} name;
|
} name;
|
||||||
|
|
||||||
/* Recording. */
|
/* Recording. */
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
char path[PATH_MAX_LENGTH];
|
char path[4096];
|
||||||
char config[PATH_MAX_LENGTH];
|
char config[4096];
|
||||||
unsigned width;
|
unsigned width;
|
||||||
unsigned height;
|
unsigned height;
|
||||||
|
|
||||||
size_t gpu_width;
|
size_t gpu_width;
|
||||||
size_t gpu_height;
|
size_t gpu_height;
|
||||||
char output_dir[PATH_MAX_LENGTH];
|
char output_dir[4096];
|
||||||
char config_dir[PATH_MAX_LENGTH];
|
char config_dir[4096];
|
||||||
bool use_output_dir;
|
bool use_output_dir;
|
||||||
} record;
|
} record;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user