Skip to content

Commit 6347292

Browse files
authored
igs/igs023_video.cpp: Give compiler a bit more freedom.
1 parent dbdee74 commit 6347292

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/mame/igs/igs023_video.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Used by:
1010
- igs/igs_m027_023vid.cpp
1111
1212
TODO:
13-
- Interrupt handling and background scaling is not implemented
14-
- Video register area is mirrored?
13+
- Interrupt handling and background scaling are not implemented
14+
- Is video register area mirrored?
1515
1616
*/
1717

@@ -794,7 +794,7 @@ u32 igs023_video_device::screen_update(screen_device &screen, bitmap_ind16 &bitm
794794
bool igs023_video_device::sprite_dma()
795795
{
796796
// verified on hardware
797-
static const u16 ram_mask[5] = { 0xffff, 0xfbff, 0x7fff, 0xffff, 0xffff };
797+
constexpr u16 ram_mask[5] = { 0xffff, 0xfbff, 0x7fff, 0xffff, 0xffff };
798798
if (BIT(~m_ctrl, 0))
799799
return false;
800800

0 commit comments

Comments
 (0)