summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/input.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/input.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/input.c')
-rw-r--r--src/emu/input.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/input.c b/src/emu/input.c
index 1be996adadb..01c32e8d0b9 100644
--- a/src/emu/input.c
+++ b/src/emu/input.c
@@ -812,11 +812,11 @@ input_device::input_device(input_class &_class, int devindex, const char *name,
astring tempstr;
if (!m_joymap.parse(mapstring))
{
- mame_printf_error("Invalid joystick map: %s\n", mapstring);
+ osd_printf_error("Invalid joystick map: %s\n", mapstring);
m_joymap.parse(joystick_map_8way);
}
else if (mapstring != joystick_map_8way)
- mame_printf_verbose("Input: Default joystick map = %s\n", m_joymap.to_string(tempstr));
+ osd_printf_verbose("Input: Default joystick map = %s\n", m_joymap.to_string(tempstr));
}
}
@@ -990,7 +990,7 @@ input_device *input_class::add_device(int devindex, const char *name, void *inte
// update the maximum index found
m_maxindex = MAX(m_maxindex, devindex);
- mame_printf_verbose("Input: Adding %s #%d: %s\n", (*devclass_string_table)[m_devclass], devindex, name);
+ osd_printf_verbose("Input: Adding %s #%d: %s\n", (*devclass_string_table)[m_devclass], devindex, name);
return m_device[devindex];
}
@@ -2074,7 +2074,7 @@ bool input_manager::set_global_joystick_map(const char *mapstring)
return false;
astring tempstr;
- mame_printf_verbose("Input: Changing default joystick map = %s\n", map.to_string(tempstr));
+ osd_printf_verbose("Input: Changing default joystick map = %s\n", map.to_string(tempstr));
// iterate over joysticks and set the map
for (int joynum = 0; joynum <= m_joystick_class.maxindex(); joynum++)