mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-06 23:51:21 +00:00
fix SPC_DSP.cpp to work on GCC 5
This commit is contained in:
parent
a09ad00e48
commit
893b48b9bb
1 changed files with 1 additions and 1 deletions
|
@ -803,7 +803,7 @@ void SPC_DSP::run( int clocks_remain )
|
|||
{
|
||||
loop:
|
||||
// GCC, why
|
||||
#if defined(__GNUC__) && !defined(__clang__)
|
||||
#if (defined(__GNUC__) && (__GNUC__ >= 7)) && !defined(__clang__)
|
||||
#define PHASE( n ) if ( n && !--clocks_remain ) break; __attribute__ ((fallthrough)); case n:
|
||||
#else
|
||||
#define PHASE( n ) if ( n && !--clocks_remain ) break; case n:
|
||||
|
|
Loading…
Reference in a new issue