Try the code below: ``` Sub Main() x = 96 y = 56 w = 1088 h = 608 Offset(-x + 96, -y + 56, -w + 1088, -h + 608) End Sub Sub Offset(x, y, w, h) print x, y, w, h End Sub ``` This should print: `0 0 0 0` instead it prints: `-192 -112 -2176 -1216`
Try the code below:
This should print:
0 0 0 0instead it prints:
-192 -112 -2176 -1216