summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emumem_hea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emumem_hea.h')
-rw-r--r--src/emu/emumem_hea.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/emumem_hea.h b/src/emu/emumem_hea.h
index 7de0d7913a0..e19a04b4613 100644
--- a/src/emu/emumem_hea.h
+++ b/src/emu/emumem_hea.h
@@ -8,7 +8,7 @@
template<int Width, int AddrShift, int Endian> class handler_entry_read_address : 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_address(address_space *space, u32 flags) : handler_entry_read<Width, AddrShift, Endian>(space, flags) {}
~handler_entry_read_address() = default;
@@ -25,7 +25,7 @@ protected:
template<int Width, int AddrShift, int Endian> class handler_entry_write_address : 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_address(address_space *space, u32 flags) : handler_entry_write<Width, AddrShift, Endian>(space, flags) {}
~handler_entry_write_address() = default;