From dc9f84ba4c986652ba503b527afe4a3347cafe11 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Mon, 4 May 2026 22:09:48 +0200 Subject: [PATCH] =?UTF-8?q?-=20[FIX]=20El=20text=20usava=20un=20uint8=5Ft?= =?UTF-8?q?=20per=20a=20la=20posici=C3=B3=20x,=20saturava=20per=20damunt?= =?UTF-8?q?=20de=20256=20pixels?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/mini/draw/draw.cpp | 2 +- source/mini/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/mini/draw/draw.cpp b/source/mini/draw/draw.cpp index ed2db95..b029e84 100644 --- a/source/mini/draw/draw.cpp +++ b/source/mini/draw/draw.cpp @@ -455,7 +455,7 @@ namespace mini void text(const char* str, int x, int y, uint8_t color) { const unsigned char* p = (const unsigned char*)str; - uint8_t xpos = x; + int xpos = x; uint8_t old_source = surf::source::get(); surf::source::set(font::current_font->surface); diff --git a/source/mini/version.h b/source/mini/version.h index 1f79e0b..ce7ba34 100644 --- a/source/mini/version.h +++ b/source/mini/version.h @@ -1,3 +1,3 @@ #pragma once -#define MINI_VERSION "1.5.3" +#define MINI_VERSION "1.5.4"