summaryrefslogtreecommitdiff
path: root/apps/plugins/pacbox/arcade.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pacbox/arcade.c')
-rw-r--r--apps/plugins/pacbox/arcade.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/pacbox/arcade.c b/apps/plugins/pacbox/arcade.c
index b4619d4c39..db7bf0bb89 100644
--- a/apps/plugins/pacbox/arcade.c
+++ b/apps/plugins/pacbox/arcade.c
@@ -408,6 +408,9 @@ unsigned getDipSwitches(void) {
408 return result; 408 return result;
409} 409}
410 410
411#if defined (CPU_COLDFIRE)
412extern void drawChar( unsigned char * buffer, int index, int ox, int oy, int color );
413#else
411static inline void drawChar( unsigned char * buffer, int index, int ox, int oy, int color ) 414static inline void drawChar( unsigned char * buffer, int index, int ox, int oy, int color )
412{ 415{
413 int x,y; 416 int x,y;
@@ -446,6 +449,7 @@ static inline void drawChar( unsigned char * buffer, int index, int ox, int oy,
446 } 449 }
447 } 450 }
448} 451}
452#endif
449 453
450inline void drawSprite( unsigned char * buffer, int index ) 454inline void drawSprite( unsigned char * buffer, int index )
451{ 455{