From 6bf39de00de67db1cddf4d9c508e4a0d818a1633 Mon Sep 17 00:00:00 2001 From: Barry Harris <44396066+barry65536@users.noreply.github.com> Date: Wed, 16 Apr 2014 08:10:23 +0000 Subject: [PATCH] compile fix --- src/burn/drv/pre90s/d_capbowl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/burn/drv/pre90s/d_capbowl.cpp b/src/burn/drv/pre90s/d_capbowl.cpp index 102f008da..d939e6b77 100644 --- a/src/burn/drv/pre90s/d_capbowl.cpp +++ b/src/burn/drv/pre90s/d_capbowl.cpp @@ -83,7 +83,7 @@ static void bankswitch(INT32 d) M6809MapMemory(DrvMainROM + bank, 0x0000, 0x3fff, M6809_ROM); } -static void __fastcall main_write(UINT16 a, UINT8 d) +static void main_write(UINT16 a, UINT8 d) { if ((a & 0xf800) == 0x5800) { tms34061_write((a & 0xff) ^ ((~a & 0x100) >> 7), *rowaddress, (a >> 8) & 3, d); @@ -130,7 +130,7 @@ static void __fastcall main_write(UINT16 a, UINT8 d) } } -static UINT8 __fastcall main_read(UINT16 a) +static UINT8 main_read(UINT16 a) { if ((a & 0xf800) == 0x5800) { return tms34061_read((a & 0xff) ^ ((~a & 0x100) >> 7), *rowaddress, (a >> 8) & 3); @@ -166,7 +166,7 @@ static UINT8 __fastcall main_read(UINT16 a) return 0; } -static void __fastcall sound_write(UINT16 a, UINT8 d) +static void sound_write(UINT16 a, UINT8 d) { switch (a) { @@ -184,7 +184,7 @@ static void __fastcall sound_write(UINT16 a, UINT8 d) } } -static UINT8 __fastcall sound_read(UINT16 a) +static UINT8 sound_read(UINT16 a) { switch (a) {