Skip to content

Commit e57c2d4

Browse files
committed
satisfy gcc
1 parent cb1a748 commit e57c2d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mame/apple/apple2video.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ void a2_video_device::dhgr_update(screen_device &screen, bitmap_ind16 &bitmap, c
883883

884884
for (int row = beginrow; row <= endrow; row++)
885885
{
886-
uint32_t const address = page + ((((row/8) & 0x07) << 7) | (((row/8) & 0x18) * 5)) | ((row & 7) << 10);
886+
uint32_t const address = page + ((((row/8) & 0x07) << 7) | (((row/8) & 0x18) * 5) | ((row & 7) << 10));
887887
uint8_t const *const vram_row = m_ram_ptr + address;
888888
uint8_t const *const vaux_row = m_aux_ptr + (address & m_aux_mask);
889889

0 commit comments

Comments
 (0)