From 327453b02c52aa1c8fc03c6162bb79accde3f832 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Wed, 5 Nov 2025 09:55:38 +0100 Subject: [PATCH] =?UTF-8?q?VERSI=C3=93=201.3.8=20-=20[FIX]=20Al=20pintar?= =?UTF-8?q?=20el=20mapa=20usava=20uint8=5Ft=20i=20per=20tant=20els=20mapes?= =?UTF-8?q?=20de=20mes=20de=20255=20tiles=20en=20alguna=20dimensi=C3=B3=20?= =?UTF-8?q?no=20funcionaven=20be?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mini.cpp | 4 ++-- version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mini.cpp b/mini.cpp index cb50939..eaa1153 100644 --- a/mini.cpp +++ b/mini.cpp @@ -1114,8 +1114,8 @@ void mset(int celx, int cely, uint8_t snum) { void map() { //int celx, int cely, int sx, int sy, uint8_t celw, uint8_t celh, uint8_t layer) { if (map_surface==NULL) return; - uint8_t celw = map_surface->w;// >> 3; - uint8_t celh = map_surface->h;// >> 3; + int celw = map_surface->w;// >> 3; + int celh = map_surface->h;// >> 3; int celx = 0; int cely = 0; //if (celw <= 0 || celh <= 0 || celw >= TILES_WIDTH || celh >= TILES_HEIGHT) return; diff --git a/version.h b/version.h index 69f02a7..61b5339 100644 --- a/version.h +++ b/version.h @@ -1,3 +1,3 @@ #pragma once -#define MINI_VERSION "1.3.7" +#define MINI_VERSION "1.3.8"