From 43f956c32d9df8c3e48193a71fbb6d0ee5bad031 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 23 Feb 2006 01:43:56 +0000 Subject: [PATCH] Lowercase letters so that it matches StringUtil.hexlate() output. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3881 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/Util.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/util/Util.as b/src/as/com/threerings/util/Util.as index 587574cbf..9805916f0 100644 --- a/src/as/com/threerings/util/Util.as +++ b/src/as/com/threerings/util/Util.as @@ -16,6 +16,6 @@ public class Util } private static const HEX :Array = new Array("0", "1", "2", "3", "4", "5", - "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"); + "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"); } }