diff options
author | 2014-04-16 08:04:20 +0000 | |
---|---|---|
committer | 2014-04-16 08:04:20 +0000 | |
commit | 67663501d7a646a5d4f43fc9c054d99bf3ce2544 (patch) | |
tree | 49beebd42271006da0c177515ecbf1f31a31b079 /src/emu/cpu/uml.c | |
parent | 72d93bb509f7ba670c27850f58fe10ce09844a93 (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/cpu/uml.c')
-rw-r--r-- | src/emu/cpu/uml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/uml.c b/src/emu/cpu/uml.c index 402028f7423..f1bb8a125f3 100644 --- a/src/emu/cpu/uml.c +++ b/src/emu/cpu/uml.c @@ -743,7 +743,7 @@ void uml::instruction::simplify() astring disasm1, disasm2; orig.disasm(disasm1, block->drcuml); inst->disasm(disasm2, block->drcuml); - mame_printf_debug("Simplified: %-50.50s -> %s\n", disasm1.cstr(), disasm2.cstr()); + osd_printf_debug("Simplified: %-50.50s -> %s\n", disasm1.cstr(), disasm2.cstr()); } */ |