aboutsummaryrefslogtreecommitdiff
path: root/src/comet.c
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-03-13 23:19:32 +0100
committerFederico Angelilli <code@fedang.net>2024-03-13 23:19:32 +0100
commitcbe94d7c42422856275ad41332cbc980054d6bee (patch)
tree08564115751ff681615988bfab5750db95acc43c /src/comet.c
parent4df262ade044448f83092ab157a15b4a3f170eec (diff)
Start refactoring state and draw
Diffstat (limited to 'src/comet.c')
-rw-r--r--src/comet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comet.c b/src/comet.c
index aacf89c..7f8b2d1 100644
--- a/src/comet.c
+++ b/src/comet.c
@@ -280,7 +280,7 @@ int main(int argc, char **argv)
log_debug("Calculated dimensions [height=%d, x_pad=%d, y_pad=%d]", height, x_padding, y_padding);
Color background_all = { 0.3, 0.3, 0.3, 1 };
- Drawable *draw = draw_create("Hack 13 Bold", height, x_padding, x_padding, y_padding, 0);
+ Drawer *draw = draw_create("Hack 13 Bold", height, x_padding, x_padding, y_padding, 0);
draw_set_background(draw, background_all);
State *state = state_create(win, draw);