diff -r df827e70ae63 -r c6aff8ceada0 project_files/HedgewarsMobile/Classes/CommodityFunctions.m --- a/project_files/HedgewarsMobile/Classes/CommodityFunctions.m Sun Dec 12 21:47:55 2010 +0300 +++ b/project_files/HedgewarsMobile/Classes/CommodityFunctions.m Mon Dec 13 01:24:06 2010 +0100 @@ -187,12 +187,12 @@ @implementation NSString (extra) --(NSString *)getMD5hash { +-(NSString *)MD5hash { const char *cStr = [self UTF8String]; unsigned char result[16]; CC_MD5( cStr, strlen(cStr), result ); return [NSString stringWithFormat: - @"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", + @"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", result[0], result[1], result[2], result[3], result[4], result[5], result[6], result[7], result[8], result[9], result[10], result[11], result[12], result[13], result[14], result[15]];