diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-06-06 18:40:59 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-24 20:05:11 -0400 |
commit | 01ff38cca80c5cf7e64494b129dde8d7c8ebbee5 (patch) | |
tree | 1bcb28a01c067abe641fe167e99416217fba0f5c /src/yuzu/main.cpp | |
parent | 73dcb13619fc6603be628a7eea275ea02818c1ce (diff) |
general_frontend: Add documentation for parental controls and ecommerce applets
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index d1813e834..47e46f574 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -814,13 +814,13 @@ bool GMainWindow::LoadROM(const QString& filename) { system.SetGPUDebugContext(debug_context); system.SetAppletFrontendSet({ - 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 + 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())}; |