From: dooglus Date: Thu, 11 Oct 2007 01:53:31 +0000 (+0000) Subject: Tidying. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=27e25c83a7cd761ec22c55509440daf242143af3;p=synfig.git Tidying. git-svn-id: http://svn.voria.com/code@903 1f10aa63-cdf2-0310-b900-c93c546f37ac --- 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);