From c64916be94ebb106f60723f195f335820ca677ae Mon Sep 17 00:00:00 2001 From: DrChat Date: Thu, 28 Dec 2017 16:19:32 -0600 Subject: [PATCH] Display a dialog if the emulator failed to launch a title specified on the command line. --- src/xenia/app/xenia_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/app/xenia_main.cc b/src/xenia/app/xenia_main.cc index ce013ec22..c715e733e 100644 --- a/src/xenia/app/xenia_main.cc +++ b/src/xenia/app/xenia_main.cc @@ -210,7 +210,7 @@ int xenia_main(const std::vector& args) { std::wstring abs_path = xe::to_absolute_path(path); result = emulator->LaunchPath(abs_path); if (XFAILED(result)) { - XELOGE("Failed to launch target: %.8X", result); + xe::FatalError("Failed to launch target: %.8X", result); emulator.reset(); emulator_window.reset(); return 1;