From bf959f926ff6dee99a15d91652256169a6484042 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Sat, 24 Nov 2007 10:38:43 +0000 Subject: (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them fitting to the naming style --- src/smallmap_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/smallmap_gui.cpp') diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index fc80e46a6..e4214ab92 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -697,7 +697,7 @@ skip_column: /* Check if y is out of bounds? */ y -= dpi->top; - if (!IS_INT_INSIDE(y, 0, dpi->height)) continue; + if (!IsInsideMM(y, 0, dpi->height)) continue; /* Default is to draw both pixels. */ skip = false; -- cgit v1.2.3-54-g00ecf