aboutsummaryrefslogtreecommitdiff
path: root/draw.c
diff options
context:
space:
mode:
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/draw.c b/draw.c
index 440231b..7f77927 100644
--- a/draw.c
+++ b/draw.c
@@ -23,7 +23,9 @@ void draw_init(const char *font, int height, int x_padding, int y_padding)
void draw(Window *win)
{
- double scale = window_get_scale(win);
+ // FIXME: Does not work for scale != 1
+ //double scale = window_get_scale(win);
+ double scale = 1;
int screen_width, screen_height;
window_get_screen_size(win, &screen_width, &screen_height);