summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Brad Hughes <bradhugh@outlook.com>2017-06-20 16:27:58 -0400
committer Brad Hughes <bradhugh@outlook.com>2017-06-20 16:27:58 -0400
commit6ada942567b44d38972863c865e64a0fe546ff00 (patch)
tree08b8a7409a2b8e0e1eb091056950a94265cc4ed7
parentec62cd4366d4b7eb79823b0d581613edbabf9046 (diff)
Tiny UWP compile fix (nw)
-rw-r--r--src/osd/uwp/window.cpp4
1 files 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();