diff --git a/src/devices/ppu_aarch64.c b/src/devices/ppu_aarch64.c index d0deb35..934ea63 100644 --- a/src/devices/ppu_aarch64.c +++ b/src/devices/ppu_aarch64.c @@ -1,3 +1,4 @@ +#ifdef __aarch64__ #include #include "ppu.h" @@ -29,3 +30,4 @@ ppu_redraw(Ppu *p, Uint32 *screen) for(; i < p->width * p->height; i++) screen[i] = p->palette[*fg ? *fg : *bg]; } +#endif