From 58c3ad7c00e493df18a3b07efda619b3aa40d6cc Mon Sep 17 00:00:00 2001 From: "therealmogminer@gmail.com" Date: Thu, 25 Jun 2015 21:35:50 +0200 Subject: [PATCH] Fix obvious array-out-of-bounds error, nw --- src/emu/machine/68561mpcc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/machine/68561mpcc.h b/src/emu/machine/68561mpcc.h index eab113ba9f5..8a7d8783c58 100644 --- a/src/emu/machine/68561mpcc.h +++ b/src/emu/machine/68561mpcc.h @@ -81,7 +81,7 @@ private: int lastIRQStat; IRQType_t IRQType; - Chan channel[1]; + Chan channel[2]; devcb_write_line intrq_cb;