From ad655021a416a8eb7314d279b0543968bd52bd35 Mon Sep 17 00:00:00 2001 From: Tobi Date: Mon, 15 Nov 2021 07:02:19 +0100 Subject: [PATCH] Update renderd7.hpp --- renderd7.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renderd7.hpp b/renderd7.hpp index edde099..cef0936 100644 --- a/renderd7.hpp +++ b/renderd7.hpp @@ -254,14 +254,14 @@ namespace RenderD7 }; struct rgba { - int r, g, b, a + int r, g, b, a; }; class Console { public: Console(int x, int y, int w, int h, int a = 255); Console(int x, int y, int w, int h, rgba col); - Console(int x, int y, int w, int h, std::string name, rgba col = {255, 255, 255, 255};, rgba barcol = {0, 0, 0, 255};, rgba outline = {222, 222, 222, 255};); + Console(int x, int y, int w, int h, std::string name, rgba col = {255, 255, 255, 255}, rgba barcol = {0, 0, 0, 255}, rgba outline = {222, 222, 222, 255}); ~Console(); private: int x, y, w, h, a;