>>34126942Dude I finished SM on Citra starting the day it leaked. I had to put up with the 5 FPS cutscenes because of the memory leak so I wrote an AHK script in to skip so I didn't even have to be at my computer when they were skipping.
press d to activate, escape to end.
Every 100 ms, it loops a script that involves holding a down and releasing a (hold and release lasts for 1 second)
===========================================
d::
Loop
{
Send, {a down}
Sleep 1000
Send, {a up}
Sleep 100
}
return
Esc::ExitApp