I'm having trouble getting PCSX2 to go fullscreen on my 4k TV(2nd Display). My primary display is a 1440p monitor. I'm currently using this autohotkey script
#NoEnv
Sleep, 3000 ;wait 3 seconds
Send #+{Left} ;Send Win+Shift+Left
Return
; This section closes PCSX2 when pressing Escape
$Esc::
{
Process, Close, {{{StartupEXE}}}
It gets PCSX2 to launch on the 2nd display, but it's not filling the screen. It only displays in the top left of my TV and I can still see the taskbar on the bottom. Any ideas how to fix this?