diff options
author | 2014-04-11 11:18:41 +0000 | |
---|---|---|
committer | 2014-04-11 11:18:41 +0000 | |
commit | fcc4b33f2e5528087cb4976a0d70ae92ec2853e9 (patch) | |
tree | e6dcaf9c2d3c23378357c2528bac77bf47d8b567 /src | |
parent | 207ec49a4d36de3f52fb099b5ca987c36d2cc13a (diff) |
fixed src/emu/video/crtc_ega.c DEBUG compilation (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/video/crtc_ega.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/crtc_ega.c b/src/emu/video/crtc_ega.c index ceaabadec61..c81e86236f8 100644 --- a/src/emu/video/crtc_ega.c +++ b/src/emu/video/crtc_ega.c @@ -521,7 +521,7 @@ UINT32 crtc_ega_device::screen_update(screen_device &screen, bitmap_ind16 &bitma { UINT16 y; - assert(!m_row_update_cb.isnull() != NULL); + assert(!m_row_update_cb.isnull()); /* call the set up function if any */ if (!m_begin_update_cb.isnull()) |