summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/ctrlmenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/ctrlmenu.cpp')
-rw-r--r--src/emu/ui/ctrlmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/ctrlmenu.cpp b/src/emu/ui/ctrlmenu.cpp
index 5d006693faf..74b35abd8e3 100644
--- a/src/emu/ui/ctrlmenu.cpp
+++ b/src/emu/ui/ctrlmenu.cpp
@@ -103,7 +103,7 @@ void ui_menu_controller_mapping::custom_render(void *selectedref, float top, flo
float width, maxwidth = origx2 - origx1;
ui_manager &mui = machine().ui();
- mui.draw_text_full(container, "Device Mapping", 0.0f, 0.0f, 1.0f, JUSTIFY_CENTER, WRAP_TRUNCATE,
+ mui.draw_text_full(container, _("Device Mapping"), 0.0f, 0.0f, 1.0f, JUSTIFY_CENTER, WRAP_TRUNCATE,
DRAW_NONE, ARGB_WHITE, ARGB_BLACK, &width, nullptr);
width += 2 * UI_BOX_LR_BORDER;
maxwidth = MAX(maxwidth, width);
@@ -123,7 +123,7 @@ void ui_menu_controller_mapping::custom_render(void *selectedref, float top, flo
y1 += UI_BOX_TB_BORDER;
// draw the text within it
- mui.draw_text_full(container, "Device Mapping", x1, y1, x2 - x1, JUSTIFY_CENTER, WRAP_TRUNCATE,
+ mui.draw_text_full(container, _("Device Mapping"), x1, y1, x2 - x1, JUSTIFY_CENTER, WRAP_TRUNCATE,
DRAW_NORMAL, UI_TEXT_COLOR, UI_TEXT_BG_COLOR, nullptr, nullptr);
}