Re: [dos] trouble with image.e
- Posted by Colin Taylor <ctaylor at RACSA.CO.CR> Jan 19, 2001
- 459 views
My image.e lines 335-338 read: <snip> overflow = length(char_attr) - 2 * (vc[VC_COLUMNS] - column + 1) if overflow > 0 then poke(scr_addr, char_attr[1..length(char_attr) - overflow]) else </snip> This is different from yours. There must be 2 versions of image.e in circulation, or maybe you have image.e from an earlier version of Euphoria. Anyone who has this problem with put_screen_char(row, col, s) could use display_text_image({row, col}, {s}) as a work-around. - Colin Taylor ----- Original Message ----- From: tacitus <indor at PRIMUS.COM.AU> To: <EUPHORIA at LISTSERV.MUOHIO.EDU> Sent: Friday, January 19, 2001 9:00 AM Subject: Re: [dos] trouble with image.e > > in my image.e, lines 335-337 read:- > > >> > overflow = length(char_attr) - 2 * (vc[VC_COLUMNS] - column + 1) > if overflow then > poke(scr_addr, char_attr[1..length(char_attr) - overflow]) > else > << >