Disable Pre Main Menu Idle [Vega] If you are idle long enough (before the Main Menu), you will be sent back to watch the original game intro scene or to a demo fight. This code disables that annoyance. NTSC-U 0403657C 60000000 0403690C 60000000 Source: At both address 0x8003657C and 0x8003690C is the instruction 'addi r0, r4, 1'. The game loads the idle frame count into r4, uses that addi instruction to increment, and then checks it against 1800. If value is greater than 1800, the game will go to a intro-scene/demo-fight. By nopping both addi instructions, the frame count never increments, so the value can never be greater than 1800. First address in code handles idle during "Press any button". Second address in code handles idle during "New Game | Continue". Code creator: Vega