mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 05:32:47 +00:00
Fix LTO related compiler warnings
This commit is contained in:
parent
d4e7f092fa
commit
10425bfa03
@ -65,18 +65,18 @@ typedef struct {
|
|||||||
DataChunk dataChunks[];
|
DataChunk dataChunks[];
|
||||||
} BeatFile;
|
} BeatFile;
|
||||||
|
|
||||||
BeatFile *patch;
|
static BeatFile *patch;
|
||||||
BeatFile *source;
|
static BeatFile *source;
|
||||||
BeatFile *target;
|
static BeatFile *target;
|
||||||
|
|
||||||
bool bpmIsActive;
|
static bool bpmIsActive;
|
||||||
u32 bpsSize;
|
static u32 bpsSize;
|
||||||
u32 bpsChecksum;
|
static u32 bpsChecksum;
|
||||||
|
|
||||||
u64 timer;
|
static u64 timer;
|
||||||
u64 timerLastCheck;
|
static u64 timerLastCheck;
|
||||||
|
|
||||||
char progressText[256];
|
static char progressText[256];
|
||||||
|
|
||||||
BeatFile* initFile(const char *path, u8 id, u64 targetSize) {
|
BeatFile* initFile(const char *path, u8 id, u64 targetSize) {
|
||||||
u32 numChunks;
|
u32 numChunks;
|
||||||
|
@ -20,10 +20,10 @@ typedef enum {
|
|||||||
IPS_MEMORY
|
IPS_MEMORY
|
||||||
} IPSERROR;
|
} IPSERROR;
|
||||||
|
|
||||||
FIL patchFile, inFile, outFile;
|
static FIL patchFile, inFile, outFile;
|
||||||
size_t patchSize;
|
static size_t patchSize;
|
||||||
u8 *patch;
|
static u8 *patch;
|
||||||
u32 patchOffset;
|
static u32 patchOffset;
|
||||||
|
|
||||||
char errName[256];
|
char errName[256];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user