From 65e79b4b8f56422d3057e1d5e308292bc08b3583 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Thu, 31 May 2012 11:10:45 +0100 Subject: [PATCH] Prevent allocation of particles with type==0 bleep bloop --- src/powder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/powder.c b/src/powder.c index aabea3436..827995c8f 100644 --- a/src/powder.c +++ b/src/powder.c @@ -705,7 +705,7 @@ inline int create_part(int p, int x, int y, int tv)//the function for creating a int t = tv & 0xFF; int v = (tv >> 8) & 0xFF; - if (x<0 || y<0 || x>=XRES || y>=YRES || ((t<0 || t>=PT_NUM)&&t!=SPC_HEAT&&t!=SPC_COOL&&t!=SPC_AIR&&t!=SPC_VACUUM&&t!=SPC_PGRV&&t!=SPC_NGRV)) + if (x<0 || y<0 || x>=XRES || y>=YRES || ((t<=0 || t>=PT_NUM)&&t!=SPC_HEAT&&t!=SPC_COOL&&t!=SPC_AIR&&t!=SPC_VACUUM&&t!=SPC_PGRV&&t!=SPC_NGRV)) return -1; if (t>=0 && t