summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wasp/draw565.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wasp/draw565.py b/wasp/draw565.py
index a69e526..e7914b8 100644
--- a/wasp/draw565.py
+++ b/wasp/draw565.py
@@ -179,9 +179,9 @@ class Draw565(object):
display.set_window(x, y, sx, sy)
- if sx <= (len(display.linebuffer) / 2) and not bool(sy & 1):
+ if sx <= (len(display.linebuffer) // 4) and not bool(sy & 1):
sx *= 2
- sy /= 2
+ sy //= 2
palette = array.array('H', (0, 0xfffe, 0x7bef, 0xffff))
next_color = 1