Fixed reported issue 2746924 (md5_asciistr() doesn't produce correct string)

This commit is contained in:
rheiny 2009-06-06 14:36:41 +00:00
parent e8b40819b9
commit 0de4ad663e
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
06-jun-2009 - rheiny - Fixed reported issue 2746924 (md5_asciistr() doesn't produce correct string)
23-may-2009 - adelikat - win32 - hex editor - freeze/unfreeze ram addresses now causes the colors to update immediately, but only with groups of addresses highlighted at once (single ones still don't yet update)
23-may-2009 - adelikat - win32 - context menu - Save Movie As... menu item (for when a movie is loaded in read+write mode)
23-may-2009 - adelikat - win32 - added opton to remove a recent item to the roms, lua, and movie recent menus

View File

@ -237,8 +237,8 @@ char *md5_asciistr(MD5DATA& md5)
for(x=0;x<16;x++)
{
str[x*2]=trans[digest[x]&0x0F];
str[x*2+1]=trans[digest[x]>>4];
str[x*2]=trans[digest[x]>>4];
str[x*2+1]=trans[digest[x]&0x0F];
}
return(str);
}