HLE: Applets: Software keyboard: update cursor position on SetInputText

fixes cursor being at 0 position even when text is present, especially annoying for handheld devices with kde virtual keyboard, which is pretty bad, with no way to move the cursor or delete text backward
This commit is contained in:
Xam
2026-05-27 10:27:15 -05:00
committed by KeatonTheBot
parent 74d6b310b8
commit 0d6c0aeeab
@@ -438,6 +438,7 @@ namespace Ryujinx.HLE.HOS.Applets
if ((newCalc.Flags & KeyboardCalcFlags.SetInputText) != 0)
{
_textValue = newCalc.InputText;
_cursorBegin = _textValue.Length;
updateText = true;
Logger.Debug?.Print(LogClass.ServiceAm, $"Input text set to {_textValue}");