summaryrefslogtreecommitdiff
path: root/gui.py
diff options
context:
space:
mode:
Diffstat (limited to 'gui.py')
-rw-r--r--gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 91a52a8..19690c8 100644
--- a/gui.py
+++ b/gui.py
@@ -77,7 +77,7 @@ def draw_arc(pos, r, bounds, color, global_coords=True):
if global_coords:
pos = world_to_win_pt(pos, c.player.center)
- gfxdraw.arc(screen, pos[0], pos[1], r, bounds[0], bounds[1], color)
+ gfxdraw.arc(screen, pos[0], pos[1], r, int(bounds[0]*180/math.pi), int(bounds[1]*180/math.pi), color)
def update():
pygame.display.update()