Make base-55 encoding & decoding match

Changed "U"'s encoding to -210, so now when the README claims "U =
-210", it's actually accurate :)
This commit is contained in:
Alex Bethel 2021-05-29 14:24:46 -05:00
parent 00e80e9740
commit fcfa83a8a6

View file

@ -5,7 +5,7 @@ pub fn char2num(character: char) -> i32 {
'X' => -24,
'W' => -23,
'V' => -22,
'U' => -21,
'U' => -210,
'T' => -20,
'R' => -18,
'S' => -19,