upon further contemplation, I like this behavior better for the -32000 problem

This commit is contained in:
adelikat 2014-06-29 15:09:21 +00:00
parent edee19e11d
commit d3838f4559
1 changed files with 2 additions and 10 deletions

View File

@ -20,11 +20,7 @@ namespace BizHawk.Client.Common
get { return _wndx; }
set
{
if (value == -32000)
{
_wndx = null;
}
else
if (value != -32000)
{
_wndx = value;
}
@ -38,11 +34,7 @@ namespace BizHawk.Client.Common
get { return _wndy; }
set
{
if (value == -32000)
{
_wndy = null;
}
else
if (value != -32000)
{
_wndy = value;
}