From 5af3fd5b533118ce556f788c32768b29b8c4d1b1 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Mon, 26 Oct 2020 21:42:21 +0100 Subject: [PATCH] changed white background to black --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 9cb5e01..a481fc1 100644 --- a/main.cpp +++ b/main.cpp @@ -63,8 +63,8 @@ void draw() { expired = false; sc::gui::ImageLock lock {*main_image}; - // white background - cairo_set_source_rgb(cr, 1, 1, 1); + // black background + cairo_set_source_rgb(cr, 0, 0, 0); cairo_rectangle(cr, 0, 0, WIDTH, HEIGHT); cairo_fill(cr);