PJS: oops gy not gx

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/dev-1.0@281 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
psperl
2007-07-28 01:23:29 +00:00
parent feb019ae0e
commit f095234a72

View File

@ -120,10 +120,10 @@ void PresetOutputs::Initialize(int gx, int gy)
{
this->zoomexp_mesh[x] = (float *)wipemalloc(gy * sizeof(float));
}
this->rot_mesh=(float **)wipemalloc(gy * sizeof(float *));
this->rot_mesh=(float **)wipemalloc(gx * sizeof(float *));
for(x = 0; x < gx; x++)
{
this->rot_mesh[x] = (float *)wipemalloc(gx * sizeof(float));
this->rot_mesh[x] = (float *)wipemalloc(gy * sizeof(float));
}
zoom_is_mesh = false;
zoomexp_is_mesh =false;