fix a string format
parent
fa78a6fd90
commit
792a1c6e3d
|
@ -16965,7 +16965,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
default:
|
default:
|
||||||
if (c < ' ')
|
if (c < ' ')
|
||||||
{
|
{
|
||||||
t = "000" + String.Format("X", c);
|
t = "000" + String.Format("{0:X}", c);
|
||||||
sb.Append("\\u" + t.Substring(t.Length - 4));
|
sb.Append("\\u" + t.Substring(t.Length - 4));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue