summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emumem_hep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emumem_hep.h')
-rw-r--r--src/emu/emumem_hep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/emumem_hep.h b/src/emu/emumem_hep.h
index 11da1dc2bca..0b166d77698 100644
--- a/src/emu/emumem_hep.h
+++ b/src/emu/emumem_hep.h
@@ -8,7 +8,7 @@
template<int Width, int AddrShift, int Endian> class handler_entry_read_passthrough : public handler_entry_read<Width, AddrShift, Endian>
{
public:
- using uX = typename handler_entry_size<Width>::uX;
+ using uX = typename emu::detail::handler_entry_size<Width>::uX;
handler_entry_read_passthrough(address_space *space, memory_passthrough_handler &mph) : handler_entry_read<Width, AddrShift, Endian>(space, handler_entry::F_PASSTHROUGH), m_mph(mph), m_next(nullptr) {}
~handler_entry_read_passthrough();
@@ -29,7 +29,7 @@ protected:
template<int Width, int AddrShift, int Endian> class handler_entry_write_passthrough : public handler_entry_write<Width, AddrShift, Endian>
{
public:
- using uX = typename handler_entry_size<Width>::uX;
+ using uX = typename emu::detail::handler_entry_size<Width>::uX;
handler_entry_write_passthrough(address_space *space, memory_passthrough_handler &mph) : handler_entry_write<Width, AddrShift, Endian>(space, handler_entry::F_PASSTHROUGH), m_mph(mph), m_next(nullptr) {}
~handler_entry_write_passthrough();