Quote:
Originally Posted by DizzyEgg
That's what happens when you apply thousand patches and asm routines without caring what they replace, where they hook, etc. There may be a few reasons for freezing, such as:
- bad opcode; this is the easiest one to fix if you have a NoGba debugger as it should notify you at what address it happened.
- stack misalignment, wrong hook; this could happen if you have two hooks in the same place for example, much harder to find. What I would do is get rid by hooks one by one to see which one causes the freeze
- infinite loop; not really a freeze, just a loop that never ends, so the same instructions are executed
forever. Tho I don't think that's what happened to you.
Anyway my tip: erase one by one the features you added to see which one causes the problem
|
Thanks for a reply though.....
But it would would still be a lot of work to know where and which hook caused the problem....
Is there any way out???