mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
fix a string format
This commit is contained in:
@@ -16965,7 +16965,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
default:
|
||||
if (c < ' ')
|
||||
{
|
||||
t = "000" + String.Format("X", c);
|
||||
t = "000" + String.Format("{0:X}", c);
|
||||
sb.Append("\\u" + t.Substring(t.Length - 4));
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user