summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 66a7080c9..d1813e834 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -814,11 +814,13 @@ bool GMainWindow::LoadROM(const QString& filename) {
814 system.SetGPUDebugContext(debug_context); 814 system.SetGPUDebugContext(debug_context);
815 815
816 system.SetAppletFrontendSet({ 816 system.SetAppletFrontendSet({
817 std::make_unique<QtErrorDisplay>(*this), 817 nullptr, ///< Parental Controls
818 nullptr, 818 std::make_unique<QtErrorDisplay>(*this), ///<
819 std::make_unique<QtProfileSelector>(*this), 819 nullptr, ///< Photo Viewer
820 std::make_unique<QtSoftwareKeyboard>(*this), 820 std::make_unique<QtProfileSelector>(*this), ///<
821 std::make_unique<QtWebBrowser>(*this), 821 std::make_unique<QtSoftwareKeyboard>(*this), ///<
822 std::make_unique<QtWebBrowser>(*this), ///<
823 nullptr, ///< E-Commerce
822 }); 824 });
823 825
824 const Core::System::ResultStatus result{system.Load(*render_window, filename.toStdString())}; 826 const Core::System::ResultStatus result{system.Load(*render_window, filename.toStdString())};