Files
fceugx/source/ngc/gcvideo.h
dborth 4cb8ec719d [What's New 2.0.3 - October 1, 2008]
* Complete rewrite of loading code - FDS / UNIF / NSF support added!
* VS games work (coin insert submitted by pakitovic)
* Mapping of 'Special' commands - VS coin insert, FDS switch disk (default A)
* 480p and DVD now available for GameCube
* Improved stability - less crashes!
2008-10-16 01:45:12 +00:00

31 lines
608 B
C

/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
* Tantric September 2008
*
* gcvideo.h
*
* Video rendering
****************************************************************************/
#ifndef _GCVIDEO_H_
#define _GCVIDEO_H_
void clearscreen ();
void showscreen ();
void initDisplay();
void RenderFrame(char *XBuf, int style);
// color palettes
#define MAXPAL 12
struct st_palettes {
char *name, *desc;
unsigned int data[64];
};
extern struct st_palettes palettes[];
#endif