Path: chuka.playstation.co.uk!scea!peter_alau@playstation.sony.com From: "Antony Arciuolo" Newsgroups: scee.yaroze.programming.2d_graphics Subject: More than two font streams Date: 30 May 1998 22:44:42 GMT Organization: SCEA News Server Lines: 24 Message-ID: <01bd8c1d$e74c00e0$483d7bd1@skynet> NNTP-Posting-Host: 209.123.61.72 X-Newsreader: Microsoft Internet News 4.70.1161 I can't open more than two font streams, why? Each stream appears to be opening, since I get a unique identifier back from FntOpen. I also run FntFlush after I am done with each stream, is this correct? ... fntStream1 = FntOpen(32, 32, 128, 32, 512); fntStream2 = FntOpen(32, 64, 128, 32, 512); fntStream3 = FntOpen(32, 96, 128, 32, 512); ... FntPrint(fntStream1, "Text in Stream1"); FntFlush(fntStream1); FntPrint(fntStream2, "Text in Stream2"); FntFlush(fntStream2); FntPrint(fntStream3, "Text in Stream3"); FntFlush(fntStream3);