From 21ff7a696650988bc76f27d217eaa6bf54cc52ac Mon Sep 17 00:00:00 2001 From: Fabio Priuli Date: Sun, 10 Feb 2013 10:40:12 +0000 Subject: [PATCH] (MESS) mc6847.c: workaround for "comparison is always true due to limited range of data type" warning which makes Apple GCC unhappy. no whatsnew. --- src/mess/video/mc6847.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/video/mc6847.c b/src/mess/video/mc6847.c index 2cdea9fff97..a2c9349965b 100644 --- a/src/mess/video/mc6847.c +++ b/src/mess/video/mc6847.c @@ -661,7 +661,7 @@ void mc6847_base_device::record_scanline_res(int scanline, INT32 start_pos, INT3 if (pos < 32) { // update values - assert(current_sample_count >= 0); + //assert(current_sample_count >= 0); assert(current_sample_count < ARRAY_LENGTH(m_data[scanline].m_mode)); update_value(&m_data[scanline].m_mode[current_sample_count], simplify_mode(data, m_mode)); update_value(&m_data[scanline].m_data[current_sample_count], data);