From b2ba7354cdaf6c99f145e26c814d3ea5ca1cc41f Mon Sep 17 00:00:00 2001 From: souldbminersmwc Date: Wed, 27 May 2026 16:12:43 -0400 Subject: [PATCH] Update base_gui.cpp --- Source/hoc-clk/overlay/src/ui/gui/base_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/hoc-clk/overlay/src/ui/gui/base_gui.cpp b/Source/hoc-clk/overlay/src/ui/gui/base_gui.cpp index a1f53c04..c8da28b0 100644 --- a/Source/hoc-clk/overlay/src/ui/gui/base_gui.cpp +++ b/Source/hoc-clk/overlay/src/ui/gui/base_gui.cpp @@ -149,13 +149,13 @@ void BaseGui::preDraw(tsl::gfx::Renderer* renderer) { false ); - static const std::string versionStr = "Version " + getVersionString(); + static const std::string versionStr = "Version " + getVersionString() + " \"Gaea\""; static constexpr tsl::Color versionColor(9, 9, 9, 15); static constexpr s32 vx = LOGO_TEXT_X + 15; static constexpr s32 vy = TEXT_Y + 18; static constexpr s32 fs = 15; static constexpr s32 skew = 3; - static constexpr s32 passes = 10; + static constexpr s32 passes = 25; for (s32 i = 0; i < passes; i++) { s32 sliceY = (vy - fs) + i * fs / passes; s32 sliceH = fs / passes + 1;