Tip for Decomps
I can’t help but recommend doing what OpenRCT2 did if you can Keep the game playable for the entire process. How? Make your decomp into a DLL that’s injected into the main, original executable. As you add code to the decomp, make it so that calls to that code go to the decomp instead of the original. Over time, more and more of the game will be from the decomp, until one day you can simply replace the original executable, and in the mean time you can VERY easily check if your new code works, or at least doesn’t crash. ...