Skip to content

Commit

Permalink
coleco/expansion/sgm: Fix clang error
Browse files Browse the repository at this point in the history
  • Loading branch information
startaq committed Apr 13, 2024
1 parent d4cd52e commit 8789ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/bus/coleco/expansion/sgm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void coleco_sgm_device::device_start()
save_pointer(NAME(m_ram_upper), 0x6000);

// install device into memory map
m_expansion->io_space().install_device(0x00, 0x7f, *this, coleco_sgm_device::io_map);
m_expansion->io_space().install_device(0x00, 0x7f, *this, &coleco_sgm_device::io_map);

m_expansion->mem_space().install_view(0x0000, 0x1fff, m_view_lower);
m_view_lower[0].install_ram(0x0000, 0x1fff, &m_ram_lower[0]);
Expand Down

0 comments on commit 8789ca6

Please sign in to comment.