[Lapetus-cvs] lapetus vdp.h,1.3,1.4
Status: Inactive
Brought to you by:
cyberwarriorx
From: Theo B. <cyb...@us...> - 2007-03-01 23:18:59
|
Update of /cvsroot/lapetus/lapetus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16169 Modified Files: vdp.h Log Message: -Added prototypes for text display functions Index: vdp.h =================================================================== RCS file: /cvsroot/lapetus/lapetus/vdp.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- vdp.h 1 Mar 2007 01:02:05 -0000 1.3 +++ vdp.h 1 Mar 2007 23:18:53 -0000 1.4 @@ -889,6 +889,10 @@ int VdpSetPalette(int type, void *palette, int size); int VdpSetDefaultPalette(void); +// Text related +void VdpPrintText(int x, int y, int color, const char *text); +void VdpPrintf(int x, int y, int color, char *format, ...); + ////////////////////////////////////////////////////////////////////////////// #endif |