From b3fa303fdd88b5ed2fec6c1577460adfafd55c54 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 18 Sep 2022 08:33:11 +0200 Subject: [PATCH] Better branding --- src/client/component/branding.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/component/branding.cpp b/src/client/component/branding.cpp index 13ed4cc4..ad2ee0d1 100644 --- a/src/client/component/branding.cpp +++ b/src/client/component/branding.cpp @@ -15,15 +15,15 @@ namespace branding { constexpr auto x = 4; constexpr auto y = 0; - constexpr auto scale = 0.5f; - float color[4] = {236 / 255.0f, 113 / 255.0f, 10 / 255.0f, 1.0f}; + constexpr auto scale = 0.45f; + float color[4] = {0.666f, 0.666f, 0.666f, 0.666f}; auto* font = reinterpret_cast(0x141CAC8E0_g)(); if (!font) return; game::R_AddCmdDrawText("BOIII: " VERSION, 0x7FFFFFFF, font, static_cast(x), y + static_cast(font[2]) * scale, - scale, scale, 0.0f, color, game::ITEM_TEXTSTYLE_SHADOWEDMORE); + scale, scale, 0.0f, color, game::ITEM_TEXTSTYLE_NORMAL); } }