summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-10-10 18:02:58 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2019-10-10 18:02:58 +0200
commit52d873062c8025915d55b15547edc66de0f17492 (patch)
tree36e8fc32838356c2399441d49b412402de523beb /src/emu
parentcc9b9974375947a1769689e74594f2b5d1aa56b9 (diff)
(nw) removed every remaining AM_ macro I could find in comments, but one in emu\memarray.h cause I didn't want to cause a full recompile for this (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/addrmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/addrmap.cpp b/src/emu/addrmap.cpp
index 968b32e85c6..eca9457e76e 100644
--- a/src/emu/addrmap.cpp
+++ b/src/emu/addrmap.cpp
@@ -1111,7 +1111,7 @@ void address_map::map_validity_check(validity_checker &valid, int spacenum) cons
{
// address map entries that reference regions but are NOPs are pointless
if (entry.m_read.m_type == AMH_NONE && entry.m_write.m_type == AMH_NONE)
- osd_printf_error("%s space references memory region %s, but is AM_NOP\n", spaceconfig.m_name, entry.m_region);
+ osd_printf_error("%s space references memory region %s, but is noprw()\n", spaceconfig.m_name, entry.m_region);
// make sure we can resolve the full path to the region
bool found = false;