Mesen-S
Mesen-S copied to clipboard
Fullscreen does not work on command line
On Mesen (NES) -fullscreen works perfect, but in Mesen-S no. Have Windows 10 64 bits. Thanks.
Best Regards
Try this command line "--fullscreen".
I have the same issue on here. it solved for me.
No works for me (--fullscreen), have Windows 10 64bits
The fullscreen switch is not supported on Mesen-S at the moment - no command line arguments are yet (mostly because I forgot about implementing them)
The fullscreen switch is not supported on Mesen-S at the moment - no command line arguments are yet (mostly because I forgot about implementing them)
Hey there... is there any update on a build that would support this? I love the Mesen emulator and would love to use in my arcade... but I need for it to auto full screen after launched via Rocketlauncher.
I fixed the FS problem with a AutoHotKey script, but really need the /LoadLastSession switch too. Here's the script in case it helps someone. Launch it in a batch file just before Mesen-S.exe
SetTitleMatchMode, 2 WinWaitActive, Mesen, , 9 Sleep, 222 ;Must set win to full screen width/height first because win mode is restored while Save/Load menu is open: WinMove, Mesen,, 0, 0, A_ScreenWidth, A_ScreenHeight Sleep, 1222 ;Send ALT+Enter for FS Send {RAlt down}{ENTER}{RAlt up} ;Sadly, the ALT press also causes a menu open event. ;The menu opens just before FS so the bar closes, but Mesen still thinks it's open so directionals will scroll sub options until mouse button press. ;Click the screen to close the (now invisible) menu. CoordMode, Mouse, Screen ;x must be 0 to keep most recent game state from being clicked Click, 0, 32
Again, really need the /LoadLastSession option too!