sum += spow(vratio, i);
mscale = wah / sum;
if(vratio >= 1)
- mmaxtile = bh > (mscale * spow(vratio, 0));
+ mmaxtile = bh > mscale;
else
mmaxtile = bh > (mscale * spow(vratio, n - 1));
}
sum += spow(vratio, i);
sscale = wah / sum;
if(vratio >= 1) {
- mmaxtile = bh > (mscale * spow(vratio, 0));
- smaxtile = bh > (sscale * spow(vratio, 0));
+ mmaxtile = bh > mscale;
+ smaxtile = bh > sscale;
}
else {
mmaxtile = bh > (mscale * spow(vratio, nmaster - 1));