From daab86c8300ac640d378a5f495b0dfd2d86e9562 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Thu, 17 Aug 2017 20:02:20 -0400 Subject: [PATCH] Fix compile error (nw) --- src/mame/audio/seibu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/audio/seibu.cpp b/src/mame/audio/seibu.cpp index ec639aad6e9..a7336ef80fd 100644 --- a/src/mame/audio/seibu.cpp +++ b/src/mame/audio/seibu.cpp @@ -255,7 +255,7 @@ READ8_MEMBER( seibu_sound_device::main_r ) return m_main2sub_pending ? 1 : 0; default: //logerror("%06x: seibu_main_r(%x)\n",space.device().safe_pc(),offset); - return 0xffff; + return 0xff; } }