diff options
author | 2016-09-14 17:53:34 -0700 | |
---|---|---|
committer | 2016-09-14 17:53:34 -0700 | |
commit | 0ed1ce56639faf0b4545ef75fc28e10746f17728 (patch) | |
tree | d8f0a7248e27730e6559cb848e54787523e810e6 | |
parent | 44a63fccb71ea83eaa137f1ac6e71a60a1fceec3 (diff) |
Tweak info message
-rw-r--r-- | docs/source/advanced/devicemap.rst | 8 | ||||
-rw-r--r-- | src/emu/input.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/advanced/devicemap.rst b/docs/source/advanced/devicemap.rst index 2b52ef00c78..be49b7d0091 100644 --- a/docs/source/advanced/devicemap.rst +++ b/docs/source/advanced/devicemap.rst @@ -74,8 +74,8 @@ Then, when MAME is started, it will list available devices to the console. For e Furthermore, when devices are mapped using mapdevice, you'll see that in the verbose logging too, such as: -| Mapped device 'HID-compliant mouse (\\?\HID#VID_D209&PID_1601&MI_02#9&375eebb1&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd})' to Gun #0 -| Mapped device 'HID-compliant mouse (\\?\HID#VID_D209&PID_1602&MI_02#8&389ab7f3&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd})' to Gun #1 -| Mapped device 'XInput Player 1' to Joy #0 -| Mapped device 'XInput Player 2' to Joy #1 +| Input: Remapped Gun #0: HID-compliant mouse (\\?\HID#VID_D209&PID_1601&MI_02#9&375eebb1&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) +| Input: Remapped Gun #1: HID-compliant mouse (\\?\HID#VID_D209&PID_1602&MI_02#8&389ab7f3&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) +| Input: Remapped Joy #0: XInput Player 1 +| Input: Remapped Joy #1: XInput Player 2 | diff --git a/src/emu/input.cpp b/src/emu/input.cpp index 560e9271797..cb63a33e05a 100644 --- a/src/emu/input.cpp +++ b/src/emu/input.cpp @@ -2152,7 +2152,7 @@ bool input_manager::map_device_to_controller(const devicemap_table_type *devicem { // remap devindex input_devclass->remap_device_index(device->devindex(), devindex); - osd_printf_info("Mapped device '%s' to %s #%d\n", device->name(), (*devclass_string_table)[input_devclass->devclass()], devindex); + osd_printf_info("Input: Remapped %s #%d: %s\n", (*devclass_string_table)[input_devclass->devclass()], devindex, device->name()); break; } } |