Skip to content

Commit 480880f

Browse files
committed
Fix bounds check to support negative numbers
I hope it is obviously to everyone why the previous code was bad here
1 parent 17d34e7 commit 480880f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
#include "screen_forest.hpp"
9494
#include "screen_treeBurner.hpp"
9595

96-
#define IN_RECTANGLE(x,y,w,h) ((unsigned)(x) < (unsigned)(w) && (unsigned)(y) < (unsigned)(h))
96+
#define IN_RECTANGLE(x, y, w, h) (0 <= (x) && 0 <= (y) && (x) < (w) && (y) < (h))
9797
#define SQRDIST(x1,y1,x2,y2) (((x1)-(x2))*((x1)-(x2))+((y1)-(y2))*((y1)-(y2)))
9898
#define TCOD_CHAR_PROGRESSBAR 1
9999
#define TCOD_CHAR_BOLT_N 2

0 commit comments

Comments
 (0)