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