Hi,

I fixed your problem in the git repository. In the end what needed to
be changed is
#define ATTR_FG(attr) (attr & 0x0F)
in src/include/video.h to:
#define ATTR_FG(attrib) (attrib & 0x0F & vga.attr.data[0x12])
I also moved it to vgatext.h, but that's not necessary if you just
want to test it.

The attributes are not fixed for "dosemu -t" but this is not really a
problem since terminal mode can't display 512 characters at the same
time (there $_internal_char_set fixes the font, similar to dosemu -X
with $_X_font set).

Bart

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Dosemu-devel mailing list
Dosemu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dosemu-devel

Reply via email to