fix build on my machine

This commit is contained in:
tildearrow 2022-09-24 18:40:36 -05:00
parent 4a8e09685a
commit 3f6ca8f650
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ void SPC_DSP::run( int clocks_remain )
{
loop:
// GCC, why
#ifdef __GNUC__
#if defined(__GNUC__) && !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: