Commit fa2f73fd by Sam McNally Committed by Geoff Lang

Fix a tautological comparison.

BUG=505309 Change-Id: I0e93139693206e766b91a5998d6e284c7a29fd14 Reviewed-on: https://chromium-review.googlesource.com/282450Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent b3a6a8f3
......@@ -629,7 +629,7 @@ OSWindow *CreateOSWindow()
bool Win32Window::setPosition(int x, int y)
{
if (mX == x && mY == mY)
if (mX == x && mY == y)
{
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment