- [FIX] El text usava un uint8_t per a la posició x, saturava per damunt de 256 pixels

This commit is contained in:
2026-05-04 22:09:48 +02:00
parent 5cd901e5a9
commit dc9f84ba4c
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -1,3 +1,3 @@
#pragma once
#define MINI_VERSION "1.5.3"
#define MINI_VERSION "1.5.4"