mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-03-22 11:52:37 +01:00
deal with some gcc7+ warnings
This commit is contained in:
Submodule cpu/cyclone updated: 5fc93bddb7...94a9d9a888
@@ -11,6 +11,10 @@
|
||||
#include "cdd.h"
|
||||
#include "cue.h"
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ >= 7
|
||||
#pragma GCC diagnostic ignored "-Wformat-truncation"
|
||||
#endif
|
||||
|
||||
static int handle_mp3(const char *fname, int index)
|
||||
{
|
||||
track_t *track = &cdd.toc.tracks[index];
|
||||
|
||||
@@ -28,6 +28,10 @@
|
||||
#include <pico/pico_int.h>
|
||||
#include <pico/patch.h>
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ >= 7
|
||||
#pragma GCC diagnostic ignored "-Wformat-truncation"
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32
|
||||
#define PATH_SEP "/"
|
||||
#define PATH_SEP_C '/'
|
||||
|
||||
Submodule platform/libpicofe updated: f8cd6a082b...795b71c571
Reference in New Issue
Block a user