mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
Move define to top of file
This commit is contained in:
parent
2251517774
commit
9c547ab541
@ -38,6 +38,12 @@
|
|||||||
#define MAGIC_LEN 16
|
#define MAGIC_LEN 16
|
||||||
#define MAX_TOKEN_LEN 255
|
#define MAX_TOKEN_LEN 255
|
||||||
|
|
||||||
|
#ifdef MSB_FIRST
|
||||||
|
#define MODETEST_VAL 0x00ffffff
|
||||||
|
#else
|
||||||
|
#define MODETEST_VAL 0xffffff00
|
||||||
|
#endif
|
||||||
|
|
||||||
struct magic_entry
|
struct magic_entry
|
||||||
{
|
{
|
||||||
const char *system_name;
|
const char *system_name;
|
||||||
@ -130,11 +136,6 @@ static int find_token(RFILE *fd, const char *token)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef MSB_FIRST
|
|
||||||
#define MODETEST_VAL 0x00ffffff
|
|
||||||
#else
|
|
||||||
#define MODETEST_VAL 0xffffff00
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static int detect_ps1_game_sub(const char *track_path,
|
static int detect_ps1_game_sub(const char *track_path,
|
||||||
char *game_id, int sub_channel_mixed)
|
char *game_id, int sub_channel_mixed)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user