Previous 199869 Revisions Next

r20886 Sunday 10th February, 2013 at 10:40:12 UTC by Fabio Priuli
(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

trunk/src/mess/video/mc6847.c
r20885r20886
661661         if (pos < 32)
662662         {
663663            // update values
664            assert(current_sample_count >= 0);
664            //assert(current_sample_count >= 0);
665665            assert(current_sample_count < ARRAY_LENGTH(m_data[scanline].m_mode));
666666            update_value(&m_data[scanline].m_mode[current_sample_count], simplify_mode(data, m_mode));
667667            update_value(&m_data[scanline].m_data[current_sample_count], data);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team