A Comment

This commit is contained in:
Simon 2010-11-03 14:29:01 +00:00
parent c3a0a9262c
commit d1ce8e55df

View File

@ -124,6 +124,7 @@ void update_air(void)
dy += fvy[y][x];
}
//Pressure Caps, remove for lulz
if(dp > 256.0f) dp = 256.0f;
if(dp < -256.0f) dp = -256.0f;
if(dx > 256.0f) dx = 256.0f;