This commit is contained in:
byuu 2019-10-05 15:09:50 +09:00
parent 7b66e1c531
commit 1698533774
2 changed files with 2 additions and 2 deletions

View File

@ -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";

View File

@ -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);