Re: Bug in put_screen_char
- Posted by Brian Broker <bkb at CNW.COM> Jun 07, 2000
- 600 views
On Wed, 7 Jun 2000 08:50:23 +0000, Tor Gausen wrote: > I think there is a small typo in the DOS section of > put_screen_char in image.e (Euphoria 2.2). Line 336: > > if overflow then > > should probably read: > > if overflow > 0 then > > or something similar. Since 'overflow' will never be less than zero, the above statements are equivalent. (zero=false, non-zero=true) -- Brian