Corrected variables in Init() to mx, my. (#1501)

It doesn't make sense otherwise
This commit is contained in:
Simon Daester 2019-08-19 17:28:48 +02:00 committed by Sergey Zubkov
parent e6b7108dd3
commit 6a004e1288

View File

@ -20095,7 +20095,7 @@ and errors (when we didn't deal correctly with semi-constructed objects consiste
if (data) {
return false;
}
data = (char*) malloc(x*y*sizeof(int));
data = (char*) malloc(mx*my*sizeof(int));
return data != nullptr;
}