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) { system.SetGPUDebugContext(debug_context); system.SetAppletFrontendSet({ - std::make_unique(*this), - nullptr, - std::make_unique(*this), - std::make_unique(*this), - std::make_unique(*this), + nullptr, ///< Parental Controls + std::make_unique(*this), ///< + nullptr, ///< Photo Viewer + std::make_unique(*this), ///< + std::make_unique(*this), ///< + std::make_unique(*this), ///< + nullptr, ///< E-Commerce }); const Core::System::ResultStatus result{system.Load(*render_window, filename.toStdString())};