triple cast, but we don't have to cast to string to fetch ARGB
This commit is contained in:
parent
8a2ee98bea
commit
03b3ea0b2f
|
@ -63,24 +63,21 @@ namespace BizHawk.Client.Common
|
|||
return (uint)(double)luaArg;
|
||||
}
|
||||
|
||||
protected static Color? ToColor(object color)
|
||||
protected static Color? ToColor(object o)
|
||||
{
|
||||
if (color == null)
|
||||
if (o == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
int tryNum;
|
||||
var result = int.TryParse(color.ToString(), out tryNum);
|
||||
|
||||
if (result)
|
||||
if (o.GetType() == typeof(double))
|
||||
{
|
||||
return Color.FromArgb(tryNum);
|
||||
return Color.FromArgb((int)(long)(double)o);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(color.ToString()))
|
||||
if (o.GetType() == typeof(string))
|
||||
{
|
||||
return Color.FromName(color.ToString());
|
||||
return Color.FromName(o.ToString());
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue