mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-30 14:04:55 +00:00
Adjust values that are different from Ime
This commit is contained in:
parent
86b66fd7ee
commit
476bb8837b
@ -96,9 +96,12 @@ Error PS4_SYSV_ABI sceImeDialogGetPanelSize(const OrbisImeDialogParam* param, u3
|
||||
case OrbisImeType::BasicLatin:
|
||||
case OrbisImeType::Url:
|
||||
case OrbisImeType::Mail:
|
||||
// We set our custom sizes, commented sizes are the original ones
|
||||
*width = 500; // 793
|
||||
*height = 100; // 408
|
||||
*width = 500;
|
||||
if (True(param->option & OrbisImeDialogOption::Multiline)) {
|
||||
*height = 300;
|
||||
} else {
|
||||
*height = 150;
|
||||
}
|
||||
break;
|
||||
case OrbisImeType::Number:
|
||||
*width = 370;
|
||||
|
Loading…
Reference in New Issue
Block a user