diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-06-05 18:14:24 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-25 02:05:11 +0200 |
commit | b889167b2cb2613ed05b2edc8d2cf547ac24d500 (patch) | |
tree | ac8c8ae0a87ff82f6c9df9fb95b192ecee6de73e /src | |
parent | applets: Track ECommerce and Parental Control applet frontends (diff) | |
download | yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.tar yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.tar.gz yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.tar.bz2 yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.tar.lz yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.tar.xz yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.tar.zst yuzu-b889167b2cb2613ed05b2edc8d2cf547ac24d500.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 12 |
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) { 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())}; |