summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/viewgfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/viewgfx.cpp')
-rw-r--r--src/emu/ui/viewgfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/viewgfx.cpp b/src/emu/ui/viewgfx.cpp
index 326e67779c9..ff34e732f1e 100644
--- a/src/emu/ui/viewgfx.cpp
+++ b/src/emu/ui/viewgfx.cpp
@@ -388,7 +388,7 @@ static void palette_handler(running_machine &machine, render_container *containe
cellboxbounds.y0 += 3.0f * chheight;
// figure out the title and expand the outer box to fit
- const char *suffix = palette->indirect_entries() == 0 ? "" : state.palette.which ? " COLORS" : " PENS";
+ const char *suffix = palette->indirect_entries() == 0 ? "" : state.palette.which ? _(" COLORS") : _(" PENS");
sprintf(title, "'%s'%s", palette->tag(), suffix);
titlewidth = ui_font->string_width(chheight, machine.render().ui_aspect(), title);
x0 = 0.0f;