summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui.py2
-rw-r--r--main.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 8c00094..75bba83 100644
--- a/gui.py
+++ b/gui.py
@@ -113,7 +113,7 @@ def set_client(cl):
global c
c=cl
-def tick():
+def draw_frame():
global screen
global movement
diff --git a/main.py b/main.py
index 4836383..21452bc 100644
--- a/main.py
+++ b/main.py
@@ -36,4 +36,4 @@ gui.set_client(c)
# main loop
while True:
c.on_message()
- gui.tick()
+ gui.draw_frame()