triple cast, but we don't have to cast to string to fetch ARGB

This commit is contained in:
feos 2018-06-22 23:15:35 +03:00
parent 8a2ee98bea
commit 03b3ea0b2f
1 changed files with 6 additions and 9 deletions

View File

@ -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;