Fixed reported issue 2746924 (md5_asciistr() doesn't produce correct string)
This commit is contained in:
parent
e8b40819b9
commit
0de4ad663e
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue