diff --git a/src/emu/emumem.h b/src/emu/emumem.h index 0598dcc454b..ee8df52f3c8 100644 --- a/src/emu/emumem.h +++ b/src/emu/emumem.h @@ -540,11 +540,11 @@ public: template memory_access_cache *cache() const { if(AddrShift != m_config.addr_shift()) - fatalerror("Requesing cache() with address shift %d while the config says %d\n", AddrShift, m_config.addr_shift()); + fatalerror("Requesting cache() with address shift %d while the config says %d\n", AddrShift, m_config.addr_shift()); if(8 << Width != m_config.data_width()) - fatalerror("Requesing cache() with data width %d while the config says %d\n", 8 << Width, m_config.data_width()); + fatalerror("Requesting cache() with data width %d while the config says %d\n", 8 << Width, m_config.data_width()); if(Endian != m_config.endianness()) - fatalerror("Requesing cache() with endianness %s while the config says %s\n", + fatalerror("Requesting cache() with endianness %s while the config says %s\n", endianness_names[Endian], endianness_names[m_config.endianness()]); return static_cast *>(m_cache);