Hi guys, I saw that using the overlays the mous is shown on top or retroarch and this seems to be already known:
It seems to be requested as Feature request because it seems to be not a bug. Is there any chance to see this done?
Thank you
Hi guys, I saw that using the overlays the mous is shown on top or retroarch and this seems to be already known:
It seems to be requested as Feature request because it seems to be not a bug. Is there any chance to see this done?
Thank you
Under input hotkey, you can map a button on your controller to grab mouse, this will get rid of it. I map mine to R3, so you will need a controller with buttons you aren’t using in game.
Download Autohotkey and make a new sript like this:
Run, F:\Program Files\RetroArch\retroarch.exe -c config
estopia_libretro_(battletoads).cfg -L cores
estopia_libretro.dll roms
es\battletoads.nes
Loop
{
WinWait, ahk_exe retroarch.exe
IfWinExist
{
MouseGetPos, 1920, 1080, 0
MouseMove, 9999, 9999
BlockInput, MouseMove
BlockInput, MouseMoveOff
MouseMove, %MX%, %MY%, 0
}
Sleep 1000
}
ExitApp
(Reemplace the path for yours)
Right-click in .ahk file and select “Compile Script”.