mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
Remove a redundant wcsncat call.
Just makes the else statement the dominant branch.
This commit is contained in:
parent
1583bcb499
commit
78f6808ece
@ -788,11 +788,7 @@ int PSPOskDialog::NativeKeyboard()
|
||||
|
||||
std::wstring inputWide;
|
||||
|
||||
if(!host->InputBoxGetWString(titleText.c_str(), defaultText, inputWide))
|
||||
{
|
||||
wcsncat(input, L"", wcslen(L""));
|
||||
}
|
||||
else
|
||||
if(host->InputBoxGetWString(titleText.c_str(), defaultText, inputWide))
|
||||
{
|
||||
size_t maxInputLength = FieldMaxLength();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user