From e7c399dbb6f8e5394c6554c624c7d12d19e24857 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 4 Oct 2023 00:24:06 +0100 Subject: [PATCH] Green tint text --- src/hottext.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hottext.nim b/src/hottext.nim index b8576a8..45e25d3 100644 --- a/src/hottext.nim +++ b/src/hottext.nim @@ -166,9 +166,9 @@ proc render(state: var State) = cint glyph.image.width, cint glyph.image.height) if i == fixationOffset: - discard glyph.texture.setTextureColorMod(0xff, 0, 0) + discard glyph.texture.setTextureColorMod(0xff, 0x80, 0) else: - discard glyph.texture.setTextureColorMod(0, 0, 0) + discard glyph.texture.setTextureColorMod(0, 0x80, 0) state.renderer.copy(glyph.texture, nil, addr destRect) proc initState(): State = -- 2.45.2