From e1aaad09032db7730872da70448db825bc4dd6ef Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 4 Jan 2025 17:01:24 +0100 Subject: [PATCH] fix: Havia deixat comentat un IF fent proves --- source/fade.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fade.cpp b/source/fade.cpp index f411546..7639dd3 100644 --- a/source/fade.cpp +++ b/source/fade.cpp @@ -55,7 +55,7 @@ void Fade::reset() // Pinta una transición en pantalla void Fade::render() { - //if (state_ != FadeState::NOT_ENABLED) + if (state_ != FadeState::NOT_ENABLED) { SDL_RenderCopy(renderer_, backbuffer_, nullptr, nullptr); }