mirror of https://github.com/bsnes-emu/bsnes.git
v111
This commit is contained in:
parent
7b66e1c531
commit
1698533774
|
@ -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";
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue