From 6ada942567b44d38972863c865e64a0fe546ff00 Mon Sep 17 00:00:00 2001 From: Brad Hughes Date: Tue, 20 Jun 2017 16:27:58 -0400 Subject: Tiny UWP compile fix (nw) --- src/osd/uwp/window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osd/uwp/window.cpp b/src/osd/uwp/window.cpp index 0cb74263f34..a2c9ca7f92d 100644 --- a/src/osd/uwp/window.cpp +++ b/src/osd/uwp/window.cpp @@ -406,9 +406,9 @@ void uwp_window_info::create(running_machine &machine, int index, std::shared_pt // make the window title if (video_config.numscreens == 1) - sprintf(window->m_title, "%s: %s [%s]", emulator_info::get_appname(), machine.system().description, machine.system().name); + sprintf(window->m_title, "%s: %s [%s]", emulator_info::get_appname(), machine.system().type.fullname(), machine.system().name); else - sprintf(window->m_title, "%s: %s [%s] - Screen %d", emulator_info::get_appname(), machine.system().description, machine.system().name, index); + sprintf(window->m_title, "%s: %s [%s] - Screen %d", emulator_info::get_appname(), machine.system().type.fullname(), machine.system().name, index); // set the initial maximized state window->m_startmaximized = options.maximize(); -- cgit v1.2.3