SourMesen / Mesen-S

Mesen-S is a cross-platform (Windows & Linux) SNES emulator built in C++ and C#
GNU General Public License v3.0
415 stars 100 forks source link

Fullscreen does not work on command line #124

Open alexjrock opened 4 years ago

alexjrock commented 4 years ago

On Mesen (NES) -fullscreen works perfect, but in Mesen-S no. Have Windows 10 64 bits. Thanks.

Best Regards

AlanRibas commented 4 years ago

Try this command line "--fullscreen".

I have the same issue on here. it solved for me.

alexjrock commented 4 years ago

No works for me (--fullscreen), have Windows 10 64bits

SourMesen commented 4 years ago

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)

omn1slash commented 4 years ago

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.

user2222222222 commented 4 years ago

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

user2222222222 commented 4 years ago

Again, really need the /LoadLastSession option too!