upon further contemplation, I like this behavior better for the -32000 problem
This commit is contained in:
parent
edee19e11d
commit
d3838f4559
|
@ -20,11 +20,7 @@ namespace BizHawk.Client.Common
|
||||||
get { return _wndx; }
|
get { return _wndx; }
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (value == -32000)
|
if (value != -32000)
|
||||||
{
|
|
||||||
_wndx = null;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
_wndx = value;
|
_wndx = value;
|
||||||
}
|
}
|
||||||
|
@ -38,11 +34,7 @@ namespace BizHawk.Client.Common
|
||||||
get { return _wndy; }
|
get { return _wndy; }
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (value == -32000)
|
if (value != -32000)
|
||||||
{
|
|
||||||
_wndy = null;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
_wndy = value;
|
_wndy = value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue