From b889167b2cb2613ed05b2edc8d2cf547ac24d500 Mon Sep 17 00:00:00 2001
From: Zach Hilman <zachhilman@gmail.com>
Date: Wed, 5 Jun 2019 12:14:24 -0400
Subject: [PATCH] yuzu: Accept default applets for Parental Controls and
 ECommerce

---
 src/yuzu/main.cpp | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 66a7080c91..d1813e8345 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -814,11 +814,13 @@ bool GMainWindow::LoadROM(const QString& filename) {
     system.SetGPUDebugContext(debug_context);
 
     system.SetAppletFrontendSet({
-        std::make_unique<QtErrorDisplay>(*this),
-        nullptr,
-        std::make_unique<QtProfileSelector>(*this),
-        std::make_unique<QtSoftwareKeyboard>(*this),
-        std::make_unique<QtWebBrowser>(*this),
+        nullptr,                                     ///< Parental Controls
+        std::make_unique<QtErrorDisplay>(*this),     ///<
+        nullptr,                                     ///< Photo Viewer
+        std::make_unique<QtProfileSelector>(*this),  ///<
+        std::make_unique<QtSoftwareKeyboard>(*this), ///<
+        std::make_unique<QtWebBrowser>(*this),       ///<
+        nullptr,                                     ///< E-Commerce
     });
 
     const Core::System::ResultStatus result{system.Load(*render_window, filename.toStdString())};
-- 
GitLab