diff --git a/bsnes/emulator/emulator.hpp b/bsnes/emulator/emulator.hpp index 0a54237f..c5b34bc5 100644 --- a/bsnes/emulator/emulator.hpp +++ b/bsnes/emulator/emulator.hpp @@ -29,7 +29,7 @@ using namespace nall; namespace Emulator { static const string Name = "bsnes"; - static const string Version = "110.7"; + static const string Version = "111"; static const string Author = "byuu"; static const string License = "GPLv3"; static const string Website = "https://byuu.org"; diff --git a/bsnes/target-bsnes/program/video.cpp b/bsnes/target-bsnes/program/video.cpp index e8fd5236..6e91fa8b 100644 --- a/bsnes/target-bsnes/program/video.cpp +++ b/bsnes/target-bsnes/program/video.cpp @@ -129,7 +129,7 @@ auto Program::toggleVideoFullScreen() -> void { if(!video.fullScreen()) { video.setFullScreen(true); - if(!input.acquired() && video.exclusive()) input.acquire(); + if(!input.acquired() && (video.exclusive() || video.hasMonitors().size() == 1)) input.acquire(); } else { if(input.acquired()) input.release(); video.setFullScreen(false);