summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/segas32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/segas32.c')
-rw-r--r--src/mame/machine/segas32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/segas32.c b/src/mame/machine/segas32.c
index 0026d3beaac..6f0c38ff86e 100644
--- a/src/mame/machine/segas32.c
+++ b/src/mame/machine/segas32.c
@@ -83,7 +83,7 @@ READ16_HANDLER( ga2_dpram_r )
#if 0 // simulation
READ16_HANDLER(ga2_sprite_protection_r)
{
- static UINT32 prot[16] =
+ static const UINT16 prot[16] =
{
0x0a, 0,
0xc5, 0,
@@ -100,7 +100,7 @@ READ16_HANDLER(ga2_sprite_protection_r)
READ16_HANDLER(ga2_wakeup_protection_r)
{
- static const char *prot =
+ static const char prot[] =
"wake up! GOLDEN AXE The Revenge of Death-Adder! ";
return prot[offset];
}
@@ -310,7 +310,7 @@ WRITE16_HANDLER(arabfgt_protection_w)
READ16_HANDLER(arf_wakeup_protection_r)
{
- static const char *prot =
+ static const char prot[] =
"wake up! ARF! ";
return prot[offset];
}