You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although /LWOD is listing negative window handles like -925692446, passing that handle into e.g. /GDFWH: does not work: it says "Error in parameter" instead. Converting the negative number to its two's complement (3369274850) doesn't work either, presumably because it overflows the int32 type being used. I'm guessing it also might just be that the code is checking for positive numbers when it'd be equally valid for them to be negative - probably just checking for != 0 instead of >0 would fix it.
The text was updated successfully, but these errors were encountered:
Although
/LWOD
is listing negative window handles like-925692446
, passing that handle into e.g./GDFWH:
does not work: it says "Error in parameter" instead. Converting the negative number to its two's complement (3369274850) doesn't work either, presumably because it overflows the int32 type being used. I'm guessing it also might just be that the code is checking for positive numbers when it'd be equally valid for them to be negative - probably just checking for != 0 instead of >0 would fix it.The text was updated successfully, but these errors were encountered: