Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont


Ignore:
Timestamp:
03/12/25 08:07:22 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont

    v6 v7  
    22Reads a font file into memory.
    33
    4 {{{
     4{{{#!c++
    55int ReadFont(int nFont, const string& strFilename);
    66
     
    2222== Examples ==
    2323
    24 {{{
     24{{{#!c++
    2525string strFontFile = "/mnt/nand/fonts/Font788_8x2.fnt";
    2626ReadFont(11, strFontFile);
    2727}}}
    2828
    29 {{{
     29{{{#!c++
    3030ReadFont(11, "/mnt/nand/fonts/Font788_8x2.fnt");
    3131}}}