removed misleading comment 999d6e79
Anselm R Garbe · 2009-07-17 15:28 1 file(s) · +2 −2
dwm.c +2 −2
350 350
		/* adjust for aspect limits */
351 351
		if(c->mina > 0 && c->maxa > 0) {
352 352
			if(c->maxa < (float)*w / *h)
353 -
				*w = *h * c->maxa + 0.5; /* -Os double upcast workaround */
353 +
				*w = *h * c->maxa + 0.5;
354 354
			else if(c->mina < (float)*h / *w)
355 -
				*h = *w * c->mina + 0.5; /* -Os double upcast workaround */
355 +
				*h = *w * c->mina + 0.5;
356 356
		}
357 357
		if(baseismin) { /* increment calculation requires this */
358 358
			*w -= c->basew;