I noticed loop variables are named as i, j, k, ..., etc. This is problematic when decompiling functions with many loop variables and you run out of letters to name them. For example, this particular function in fmmc_launcher.ysc has so many loop variables that it starts using special symbols and even other nondisplayable characaters as variable names. I had to modify LoopIndexAutoName to use number suffix in order to produce somewhat more reasonable code.
I noticed loop variables are named as i, j, k, ..., etc. This is problematic when decompiling functions with many loop variables and you run out of letters to name them. For example, this particular function in
fmmc_launcher.ysc
has so many loop variables that it starts using special symbols and even other nondisplayable characaters as variable names. I had to modifyLoopIndexAutoName
to use number suffix in order to produce somewhat more reasonable code.