diff --git a/changelog.txt b/changelog.txt index 01d757a7..b0102b9a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/src/utils/md5.cpp b/src/utils/md5.cpp index 6471c3c3..f4ea950b 100644 --- a/src/utils/md5.cpp +++ b/src/utils/md5.cpp @@ -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); }