mirror of
https://github.com/extremscorner/not64.git
synced 2025-04-02 10:52:37 -04:00
Added "Liip year 2008 edition!!" to credits screen Lots of GX fixes, including handling of N64 transform matrices, calculation of lighting and generated texture coordinates, and texture synchronization with CPU... I didn't get to some other GX fixes I want to do, so don't complain about Mario's face looking weird, yet. :)
12 lines
346 B
C
12 lines
346 B
C
/*****************************************************************************
|
|
* font.h
|
|
*****************************************************************************/
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
extern void init_font(void);
|
|
void write_font(int x, int y, char *string,u32 **axfb,int whichfb);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|