Fixed dumb typo

This commit is contained in:
Alex Szpakowski
2014-01-17 21:12:30 -04:00
parent 309193895a
commit 0d52ac6d52
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ static void windowToPixelCoords(int *x, int *y)
*x = int(double(*x) * scale);
if (y != nullptr)
*y = int(double(*x) * scale);
*y = int(double(*y) * scale);
}
+1 -1
View File
@@ -46,7 +46,7 @@ static void windowToPixelCoords(int *x, int *y)
*x = int(double(*x) * scale);
if (y != nullptr)
*y = int(double(*x) * scale);
*y = int(double(*y) * scale);
}
// And vice versa for setting mouse coordinates.