|
From: Dr. J. Z. <joh...@ze...> - 2007-01-19 11:42:14
|
Hello,
there are assertions as
assert(ux < term->xmax && uy < term->ymax);
in emf.trm which fail sometimes.
I belive, that these assertions should be changed to include
equality like this:
assert(ux <= term->xmax && uy <= term->ymax);
agreed?
--
Johannes
|