summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/snes
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-16 08:04:20 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-16 08:04:20 +0000
commit67663501d7a646a5d4f43fc9c054d99bf3ce2544 (patch)
tree49beebd42271006da0c177515ecbf1f31a31b079 /src/emu/bus/snes
parent72d93bb509f7ba670c27850f58fe10ce09844a93 (diff)
Moved eminline and related files into /src/osd since it's system related (nw)
Moved delegates into /src/lib/util to enable usage of delegates in other project parts Moved mame_printf_* calls into /src/osd/osdcore.c and renamed them to osd_printf_* Changed mess.mak to display compilation of ymmu100.ppm nicely
Diffstat (limited to 'src/emu/bus/snes')
-rw-r--r--src/emu/bus/snes/bsx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bus/snes/bsx.c b/src/emu/bus/snes/bsx.c
index 1efa7378d25..25bedf54d6d 100644
--- a/src/emu/bus/snes/bsx.c
+++ b/src/emu/bus/snes/bsx.c
@@ -137,7 +137,7 @@ UINT8 BSX_base::read(UINT32 offset)
offset &= 0xffff;
if (offset < 0x2188 || offset >= 0x21a0)
{
- mame_printf_debug("BS-X Base Unit reg read outside correct range!\n");
+ osd_printf_debug("BS-X Base Unit reg read outside correct range!\n");
return 0x00;
}
@@ -199,7 +199,7 @@ void BSX_base::write(UINT32 offset, UINT8 data)
offset &= 0xffff;
if (offset < 0x2188 || offset >= 0x21a0)
{
- mame_printf_debug("BS-X Base Unit reg write outside correct range!\n");
+ osd_printf_debug("BS-X Base Unit reg write outside correct range!\n");
return;
}