warning bit from the door fix earlier

mklev.c(97,14): warning C4389: '!=': signed/unsigned mismatch
This commit is contained in:
nhmall
2025-03-16 08:42:42 -04:00
parent e164ce0af4
commit 53cbccdb86

View File

@@ -94,7 +94,7 @@ good_rm_wall_doorpos(coordxy x, coordxy y, int dir, struct mkroom *room)
rmno = (room - svr.rooms) + ROOMOFFSET;
if (rmno != levl[tx][ty].roomno)
if (rmno != (int) levl[tx][ty].roomno)
return FALSE;
return TRUE;