applets/swkbd: Implement DefaultCitraKeyboard

This commit is contained in:
zhupengfei 2018-06-20 17:20:38 +08:00
parent 18664c719e
commit f23443b921
No known key found for this signature in database
GPG key ID: 85B82A3E62174206
7 changed files with 61 additions and 6 deletions

View file

@ -35,6 +35,7 @@
#include "common/string_util.h"
#include "core/core.h"
#include "core/file_sys/cia_container.h"
#include "core/frontend/applets/default_applets.h"
#include "core/gdbstub/gdbstub.h"
#include "core/hle/service/am/am.h"
#include "core/loader/loader.h"
@ -271,6 +272,9 @@ int main(int argc, char** argv) {
Settings::values.movie_record = std::move(movie_record);
Settings::Apply();
// Register frontend applets
Frontend::RegisterDefaultApplets();
std::unique_ptr<EmuWindow_SDL2> emu_window{std::make_unique<EmuWindow_SDL2>(fullscreen)};
Core::System& system{Core::System::GetInstance()};