From 6ca2051c960a683ab3c014d7e06ff59a3d0ef1a5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 27 May 2024 13:09:32 +0200 Subject: [PATCH] bugfix in parsecolor --- util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.cpp b/util.cpp index 4d5b952e..13a8e6a9 100644 --- a/util.cpp +++ b/util.cpp @@ -610,7 +610,7 @@ EX transmatrix parsematrix(const string& s) { EX color_t parsecolor(const string& s, bool has_alpha) { exp_parser ep; ep.s = s; - auto col = ep.parsecolor(has_alpha); + auto col = ep.parsecolor(); if(!has_alpha) col >>= 8; return col; }