From d265b255b029539fc83136c519301266337ec5f1 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 2 Nov 2017 06:04:00 -0400 Subject: [PATCH] i8275: Remove assert now that buffer overflow is guarded against in non-debug builds (nw) --- src/devices/video/i8275.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/devices/video/i8275.cpp b/src/devices/video/i8275.cpp index a232776fb05..ee146c92519 100644 --- a/src/devices/video/i8275.cpp +++ b/src/devices/video/i8275.cpp @@ -584,7 +584,6 @@ WRITE8_MEMBER( i8275_device::dack_w ) } else { - assert(m_buffer_idx >= 0 && m_buffer_idx < ARRAY_LENGTH(m_buffer[m_buffer_dma])); if (m_buffer_idx < ARRAY_LENGTH(m_buffer[m_buffer_dma])) m_buffer[m_buffer_dma][m_buffer_idx++] = data;