X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_noise%2Frandom.cpp;h=7bc87e5029afae0152d3f3283c709dca15d1a5e5;hb=eef623cc49ddc319219d759e0472e54ce4b3f402;hp=bd3cca84845a6feba8fad1a15f0a09c8aead7029;hpb=ee42de12e3d9ba6c7105ab7b2344c9ec1fcef620;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_noise/random.cpp b/synfig-core/trunk/src/modules/mod_noise/random.cpp index bd3cca8..7bc87e5 100644 --- a/synfig-core/trunk/src/modules/mod_noise/random.cpp +++ b/synfig-core/trunk/src/modules/mod_noise/random.cpp @@ -89,9 +89,7 @@ Random::operator()(SmoothType smooth,int subseed,float xf,float yf,float tf)cons //precalculate indices (all clamped) and offset const int xa[] = {x-1,x,x+1,x+2}; - const int ya[] = {y-1,y,y+1,y+2}; - const int ta[] = {t-1,t,t+1,t+2}; const float dx(xf-x);