From d237dd201913252733c65f907c453a58beb73ace Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Wed, 18 Oct 2023 17:25:52 +0200 Subject: [PATCH] - [FIX] El cursor pintava el color transparent --- source/gamestate_prefase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/gamestate_prefase.cpp b/source/gamestate_prefase.cpp index 5d7cd9f..8b68be1 100644 --- a/source/gamestate_prefase.cpp +++ b/source/gamestate_prefase.cpp @@ -52,6 +52,7 @@ namespace gamestate draw::setSource(fondo); draw::draw(0, 0, 320, 200, 0, 0); + draw::setTrans(0); draw::setSource(cursor); draw::draw(input::mouseX(), input::mouseY(), cursor->w, cursor->h, 0, 0);