* Addressed comments and removed the applet interface * swkbd: address @lioncash's comments * core: more fixes ** Moved registered_swkbd to System ** Removed an usused virtual ** Removed functionality of DrawScreenKeyboard ** Removed src/core/settings.h change * swkbd: address @lioncash's 2nd review * swkbd: update logging macro * QtKeyboard: Make dialog modal and hide help
12 lines
374 B
C++
12 lines
374 B
C++
// Copyright 2018 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/frontend/applets/default_applets.h"
|
|
#include "core/frontend/applets/swkbd.h"
|
|
|
|
namespace Frontend {
|
|
void RegisterDefaultApplets() {
|
|
RegisterSoftwareKeyboard(std::make_shared<DefaultCitraKeyboard>());
|
|
}
|
|
} // namespace Frontend
|