summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/express.c
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/debug/express.c
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/debug/express.c')
-rw-r--r--src/emu/debug/express.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/express.c b/src/emu/debug/express.c
index f16e0935f0d..77ed9bb89c1 100644
--- a/src/emu/debug/express.c
+++ b/src/emu/debug/express.c
@@ -611,7 +611,7 @@ void parsed_expression::copy(const parsed_expression &src)
void parsed_expression::print_tokens(FILE *out)
{
#if DEBUG_TOKENS
- mame_printf_debug("----\n");
+ osd_printf_debug("----\n");
for (parse_token *token = m_tokens.first(); token != NULL; token = token->next())
{
switch (token->type)
@@ -689,7 +689,7 @@ void parsed_expression::print_tokens(FILE *out)
break;
}
}
- mame_printf_debug("----\n");
+ osd_printf_debug("----\n");
#endif
}