Files
ci-libretro-fceumm/src/palette.h
retro-wertz 1811ea1e06 Remove incomplete Use NTSC core option
Use NTSC colors option is incomplete due to missing int,hue adjustments. This can be added but there is no smooth way using core options or hotkey to selec ranges 1-256 for fine tuning

Using shaders instead can work better at this with more adjustments possible
2018-06-15 10:59:25 +08:00

18 lines
302 B
C

#ifndef _FCEU_PALETTE_H
#define _FCEU_PALETTE_H
typedef struct {
uint8 r, g, b;
} pal;
extern pal *palo;
extern int ipalette;
void FCEU_ResetPalette(void);
void FCEU_ResetPalette(void);
void FCEU_ResetMessages();
void FCEU_LoadGamePalette(void);
void FCEU_DrawNTSCControlBars(uint8 *XBuf);
#endif