paxcut
paxcut
> Somehow both the first and the second item that's found is displayed as 1 of 15 Scratch my comment about that. I just found that if regexp is turned...
I fixed all the problems listed but I ran into a troubling issue. To see the problem import the biggest pattern file (I think it is 3ds.hexpat) and open find...
I am done with all changes to this pr for now. Please review at your earliest convenience and post any issues you may encounter. thanks.
If all you need is to find the position of the next byte not equal to some value (call it x) then the following pattern ``` while($[$]==x) $+=1; ``` should...
assigning arrays has never been supported or documented. You are better off placing a second array at same address as the first one ```cpp #include u8 values[2] @ 0; u8...
Assigning arrays like that is not defined in any 'normal' languages. Normally you loop over contents if you want a copy. I am also looking at the other bug but...
in ImHex it works fine ```cpp to[0].value= from[0].value; ``` there is no = operator defined for array elements that are udts. I posted code that shows one way to do...
I agree error messages could be better but it is not easy thing to do always. you can copy udts as long as they are not array members. for example...
it can also copy arrays i just update the last code i posted. you need to wrap the array im a pattern
yes, i was just told that this is a bug that should be fixed