Posted by Bonkers on 1/17/2000, 12:28 pm
, in reply to "Task2 my solution"
216.41.28.245
I don't know if your one byte patch will necessarily work, I was thinking this at first when I was working on my one byte patch, but the thing is that if you use or eax, 1, then you are not setting the rest of eax to all 0's, the reason for the and eax, 1 in their code was to set eax = 00000001 it wasn't to set the return to 1 since they already had done setle al which would set al to 1. But if you want to do i one byte patch to alter the return of the function then there are other ways such as the one in my post.