2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
#ifndef __light_h__
|
|
|
|
#define __light_h__
|
|
|
|
|
2019-10-27 13:53:20 +00:00
|
|
|
#include "compat.h"
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
void MyLoadPalette();
|
|
|
|
int LoadPaletteLookups();
|
|
|
|
void WaitVBL();
|
|
|
|
void SetGreenPal();
|
|
|
|
void RestoreGreenPal();
|
|
|
|
void FixPalette();
|
|
|
|
void FadeToWhite();
|
2019-10-27 13:53:20 +00:00
|
|
|
int HavePLURemap();
|
|
|
|
uint8_t RemapPLU(uint8_t pal);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
extern void DoOverscanSet(short someval);
|
2019-10-12 21:09:55 +00:00
|
|
|
void SetOverscan(int id);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-10-12 21:09:55 +00:00
|
|
|
//extern unsigned char kenpal[];
|
2019-08-26 03:59:14 +00:00
|
|
|
extern short overscanindex;
|
|
|
|
|
|
|
|
extern char *origpalookup[];
|
|
|
|
|
|
|
|
extern short nPalDiff;
|
|
|
|
|
|
|
|
#endif
|