summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/numeric.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/util/numeric.h b/src/util/numeric.h
index e7fdc2599..098a5631c 100644
--- a/src/util/numeric.h
+++ b/src/util/numeric.h
@@ -111,15 +111,6 @@ inline bool isInArea(v3s16 p, v3s16 d)
);
}
-inline s16 rangelim(s16 i, s16 max)
-{
- if(i < 0)
- return 0;
- if(i > max)
- return max;
- return i;
-}
-
#define rangelim(d, min, max) ((d) < (min) ? (min) : ((d)>(max)?(max):(d)))
#define myfloor(x) ((x) > 0.0 ? (int)(x) : (int)(x) - 1)