Picomite/PicoMiteVGA V5.07.05 release candidates


Author Message
matherp
Guru

Joined: 11/12/2012
Location: United Kingdom
Posts: 8034
Posted: 12:58pm 25 Sep 2022      

This is the code for the text issue - something Geoff has put in the MM+ and I've just copied
   while(*str) {
       if(*str == 0xff) {
//            fc = rgb(0, 0, 255);                                // this is specially for GUI FORMATBOX
           str++;
           GUIPrintChar(fnt, bc, fc, *str++, jo);
       } else
           GUIPrintChar(fnt, fc, bc, *str++, jo);
   }


Mode 7:For i=1 To 10:Text i*Mm.Info(FontWidth),"A","CT",1,1:Next


This is missing the Y coordinate
Edited 2022-09-25 23:01 by matherp