summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applet_software_keyboard.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* qt: implement RequestExit for appletsLiam2023-03-251-1/+1
|
* applets: implement RequestExitLiam2023-03-251-0/+5
|
* applet/swkbd: Implement optional symbol keysMorph2022-07-241-0/+6
| | | | These are only used in the numeric keyboard, and correspond to the keys to the left and right of the "0" key on the numeric keyboard.
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-1/+1
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* applets/swkbd: Split software keyboard initializationMorph2022-03-221-153/+321
| | | | | Since the CalcArg struct has been updated with a new size and fields, we have to split the initialization of the keyboard into multiple functions. This also adds support for parsing the new CalcArg struct used by updated versions of Monster Hunter Rise.
* applets/swkbd: Fix text check message encodingMorph2021-11-081-7/+15
| | | | The text check message can be encoded in UTF-8.
* applets/swkbd: Skip text checking if the text has been confirmedMorph2021-11-081-7/+13
| | | | | | | Confirm means that the text has already been checked by the application to be correct, but is asking the user for confirmation. The confirmation text itself seems to be corrupted though, this needs to be investigated. Fixes the software keyboard in Famicom Detective Club: The Missing Heir
* applet_swkbd: Include the null terminator in the buffer size calculationMorph2021-08-051-2/+4
| | | | Some games may interpret the read string as a null-terminated string instead of just reading the string up to buffer_size.
* applet_swkbd: Correct string buffer size calculationMorph2021-07-301-2/+2
| | | | The buffer size here does not include the initial 8 bytes.
* applets: Append applet_ prefix to backend appletsMorph2021-07-141-0/+1082