diff options
author | 2008-09-29 07:01:55 +0000 | |
---|---|---|
committer | 2008-09-29 07:01:55 +0000 | |
commit | ef2fa89e4417b3b6d2f722a6552cc1160013201a (patch) | |
tree | dcd19edcdd59228ac9ca310030512591148f2381 | |
parent | ce7edb155d88f0cf8b30eae8c8214fa4ca18b44c (diff) |
Compile error fix.
-rw-r--r-- | src/mame/includes/mcr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/includes/mcr.h b/src/mame/includes/mcr.h index 46fd4ee098e..4428c3b643f 100644 --- a/src/mame/includes/mcr.h +++ b/src/mame/includes/mcr.h @@ -5,6 +5,7 @@ **************************************************************************/ #include "cpu/z80/z80daisy.h" +#include "machine/z80pio.h" /* constants */ #define MAIN_OSC_MCR_I XTAL_19_968MHz @@ -22,7 +23,7 @@ extern attotime mcr68_timing_factor; extern const struct z80_irq_daisy_chain mcr_daisy_chain[]; extern const struct z80_irq_daisy_chain mcr_ipu_daisy_chain[]; -extern const struct z80pio_interface nflfoot_pio_intf; +extern const z80pio_interface nflfoot_pio_intf; extern UINT8 mcr_cocktail_flip; extern const gfx_layout mcr_bg_layout; |