In the options menu turn off the confirm on exit
and use this AHK script in your edit emulator > autohotkey scripts tab to close it out with Escape or your controller button combo, it will also move your mouse if its not disappearing. It will also move your mouse off screen if it's not disappearing though you may have to change the 2160 to 1920 if using a 1920x1080 display.
Sleep, 3000
SetKeyDelay, -1, 110
MouseMove, 0, 2160, 0, R
$Esc::
{
Process, Close, {{{StartupEXE}}}
}