diff options
author | Benji Dial <benji6283@gmail.com> | 2021-02-18 11:56:08 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-02-18 11:56:08 -0500 |
commit | 00cc8736f10098dedf6b856b9ad8bd0094211263 (patch) | |
tree | 4cd252a614b26cb3dcf4a20c142feeffbb4c3c2a /src/user/mkpopup/main.c | |
parent | 9d8ce7688f051fc5cd9e917faf3b1e49a3e620ab (diff) | |
download | portland-os-00cc8736f10098dedf6b856b9ad8bd0094211263.tar.gz |
vbe support, truecolor window manager pixbufs
Diffstat (limited to 'src/user/mkpopup/main.c')
-rw-r--r-- | src/user/mkpopup/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/mkpopup/main.c b/src/user/mkpopup/main.c index 5b56889..05ea4e3 100644 --- a/src/user/mkpopup/main.c +++ b/src/user/mkpopup/main.c @@ -31,6 +31,6 @@ void main(const char *text) { } struct popup p; - info_popup(&p, text, 0x10, 0x07); + info_popup(&p, text, (_pixel_t){.r = 0, .g = 0, .b = 0}, (_pixel_t){.r = 0xbf, .g = 0xbf, .b = 0xbf}); make_modal(&p); }
\ No newline at end of file |