Input Widget - check string length before attempting to check for "oem", fixes crash made by my last fix
This commit is contained in:
parent
8dfffb0d04
commit
ac7f43304f
|
@ -93,8 +93,11 @@ namespace BizHawk.MultiClient
|
|||
if ((modifiers & Keys.Alt) != 0)
|
||||
str += "ALT + ";
|
||||
str += key.ToString();
|
||||
if (str.Substring(0, 3) == "Oem")
|
||||
str = str.Substring(3, str.Length - 3);
|
||||
if (str.Length > 3)
|
||||
{
|
||||
if (str.Substring(0, 3) == "Oem")
|
||||
str = str.Substring(3, str.Length - 3);
|
||||
}
|
||||
return str;
|
||||
}
|
||||
public Keys key;
|
||||
|
|
Loading…
Reference in New Issue