summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2013-02-10 10:40:12 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2013-02-10 10:40:12 +0000
commit21ff7a696650988bc76f27d217eaa6bf54cc52ac (patch)
tree80d68aa61c240b96e313425ebf9313a0f4374ddd
parent216632da3b0be5009726b1f0facd50d1beb13825 (diff)
(MESS) mc6847.c: workaround for "comparison is always true due to limited range of data type" warning which makes Apple GCC unhappy. no whatsnew.
-rw-r--r--src/mess/video/mc6847.c2
1 files changed, 1 insertions, 1 deletions
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);