![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Tobis Programm forked to not destroy your golden files
Fork of Robocode by
Diff: source/Positioning.cpp
- Revision:
- 69:1fdcef6a7577
- Parent:
- 68:29c52ea147d5
- Child:
- 70:922cbbfebf02
--- a/source/Positioning.cpp Wed Apr 19 14:00:59 2017 +0000 +++ b/source/Positioning.cpp Thu Apr 20 05:52:22 2017 +0000 @@ -35,7 +35,7 @@ position coord_to_pos(coordinates coord) { position pos = {0}; - pos.x = rint(coord.x -0.5f); + pos.x = rint(coord.x -0.5f); //round values pos.y = rint(coord.y -0.5f); return pos; }