mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-17 09:51:39 +00:00
ff6820aa92
In other words make these effects polymost friendly
27 lines
454 B
C
27 lines
454 B
C
|
|
#ifndef __light_h__
|
|
#define __light_h__
|
|
|
|
#include "compat.h"
|
|
|
|
void MyLoadPalette();
|
|
int LoadPaletteLookups();
|
|
void WaitVBL();
|
|
void SetGreenPal();
|
|
void RestoreGreenPal();
|
|
void FixPalette();
|
|
void FadeToWhite();
|
|
int HavePLURemap();
|
|
uint8_t RemapPLU(uint8_t pal);
|
|
|
|
extern void DoOverscanSet(short someval);
|
|
void SetOverscan(int id);
|
|
|
|
//extern unsigned char kenpal[];
|
|
extern short overscanindex;
|
|
|
|
extern char *origpalookup[];
|
|
|
|
extern short nPalDiff;
|
|
|
|
#endif
|