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
18 lines
302 B
C
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
|