aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/psxgpu/fntsort.c
diff options
context:
space:
mode:
authorJohn "Lameguy" Wilbert Villamor <lameguy64@gmail.com>2022-09-26 16:49:56 +0800
committerGitHub <noreply@github.com>2022-09-26 16:49:56 +0800
commitc4a2533d21dfd05cde841ea48c67b05e0e6a853f (patch)
treec7ef61653b157b69fb0956709366996ddbc4ecfa /libpsn00b/psxgpu/fntsort.c
parenta8b404b3400c3ebd8e0b923dcaefcc49ea563e36 (diff)
parent86f0064afb8200e60dd80827535cac30d0eab028 (diff)
downloadpsn00bsdk-c4a2533d21dfd05cde841ea48c67b05e0e6a853f.tar.gz
Merge pull request #55 from spicyjpeg/psxmdec
Full MDEC support, C library refactors, cleanups and bugfixes (v0.20)
Diffstat (limited to 'libpsn00b/psxgpu/fntsort.c')
-rw-r--r--libpsn00b/psxgpu/fntsort.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/libpsn00b/psxgpu/fntsort.c b/libpsn00b/psxgpu/fntsort.c
deleted file mode 100644
index 9358793..0000000
--- a/libpsn00b/psxgpu/fntsort.c
+++ /dev/null
@@ -1,48 +0,0 @@
-#include <sys/types.h>
-#include <stdio.h>
-#include <ctype.h>
-#include <psxgpu.h>
-
-extern unsigned short _font_tpage;
-extern unsigned short _font_clut;
-
-char *FntSort(u_long *ot, char *pri, int x, int y, const char *text) {
-
- DR_TPAGE *tpage;
- SPRT_8 *sprt = (SPRT_8*)pri;
- int i;
-
- while( *text != 0 ) {
-
- i = toupper( *text )-32;
-
- if( i > 0 ) {
-
- i--;
- setSprt8( sprt );
- setRGB0( sprt, 128, 128, 128 );
- setXY0( sprt, x, y );
- setUV0( sprt, (i%16)<<3, (i>>4)<<3 );
- sprt->clut = _font_clut;
- addPrim( ot, sprt );
- sprt++;
-
- }
-
- x += 8;
- text++;
-
- }
-
- pri = (char*)sprt;
-
- tpage = (DR_TPAGE*)pri;
- tpage->code[0] = _font_tpage;
- setlen( tpage, 1 );
- setcode( tpage, 0xe1 );
- addPrim( ot, pri );
- pri += sizeof(DR_TPAGE);
-
- return pri;
-
-} \ No newline at end of file