Re: TVision on the framebuffer
Brought to you by:
set
From: Witold F. <wi...@po...> - 2006-08-26 14:39:37
|
On Wed, Aug 23, 2006 at 01:45:29PM -0300, Salvador Eduardo Tropea wrote: > On 19/08/06 15:42, Witold Filipczyk wrote: > > >On Sat, Aug 19, 2006 at 01:54:06PM +0200, Witold Filipczyk wrote: > > > > > >>I set UseVCS=0 in ~/.tvrc and the cursor doesn't leave trace anymore, > >>but I lost frames. I have tried various AppCP and ScrCP settings, but > >>with no success. I set fonts using: > >>setfont lat2u-16 -m 8859-2 > >> > >> > > > >setfont lat2-16 -m 8859-2 and I got frames, but the triangle char is not > >displayed and the screen looks silly like this. See using less -r > > > > > > Is hard to decode what you attached. Can you explain it? > BTW: The u v.s. not u fonts are wrongly created, at least for Debian > 3.x. The fact that they is work is just because you can tweak the kernel > tables but they are wrong and TV gets confused. > > I'll be in Spain for more than three weeks so I don't know if I'll be > able to read the mailing list. Please be patient with my replies. While displaying a menu with a submenu neither the triangle char nor '>' was shown on the screen. Here is the fix: --- tvision/classes/codepage.cc.old 2006-08-26 01:10:38.000000000 +0200 +++ tvision/classes/codepage.cc 2006-08-26 16:33:39.993841648 +0200 @@ -1739,8 +1739,6 @@ uchar TVCodePage::RemapChar(uchar c, ushort *map) { - if (c<map[256]) - return c; int i; ushort v=c; for (i=map[256]; i<256; i++) -- Witek |