diff options
Diffstat (limited to 'src/position.h')
-rw-r--r-- | src/position.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/position.h b/src/position.h index 1d3070e1b..973a774f0 100644 --- a/src/position.h +++ b/src/position.h @@ -31,8 +31,8 @@ */ struct Position { - Position(int x, int y): - x(x), y(y) + Position(int x0, int y0): + x(x0), y(y0) { } int x; |