The original instruction is:
83 F9 05 cmp ecx, 5
It looks like you're trying to change that into a constant comaparison, something like:
83 05 05 cmp 5, 5 ; not what you think it is!
I doubt that such a beast even exists, since its usefulness would be questionable at best. Comparing two constants would seem to be a waste of silicon.
What you're actually changing it to is an instruction that almost certainly dereferences an invalid address).
As option one, you can replace that three byte sequence with one that sets the zero bit (since the check a few instructions down is a jnz instruction), and pad it out with enough nop operations to make it the same size.
Alternatively, look for a cmp ecx, ecx statement (again with appropriate nop padding) so that you can be certain all flags are set correctly. This is, according to the GNU assembler as:
39 c9 cmp %ecx, %ecx
90 nop