From c66bc59508d6203d112639eb0f088262f607c517 Mon Sep 17 00:00:00 2001 From: Brandon Munger Date: Mon, 28 Dec 2015 19:10:31 -0500 Subject: [PATCH] Fix UI message for software selection --- src/emu/ui/imgcntrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/ui/imgcntrl.cpp b/src/emu/ui/imgcntrl.cpp index 11ed8c26c5c..298a0e25d9c 100644 --- a/src/emu/ui/imgcntrl.cpp +++ b/src/emu/ui/imgcntrl.cpp @@ -2,7 +2,7 @@ // copyright-holders:Nathan Woods /*************************************************************************** - ui/imgcntrl.c + ui/imgcntrl.cpp MESS's clunky built-in file manager @@ -146,7 +146,7 @@ void ui_menu_control_device_image::load_software_part() hook_load(temp_name, true); else { - machine().popmessage("The selected game is missing one or more required ROM or CHD images. Please select a different game."); + machine().popmessage("The software selected is missing one or more required ROM or CHD images. Please select a different one."); state = SELECT_SOFTLIST; } }