mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Compile fix for the Debian sid SDL version compile.
This commit is contained in:
parent
36a3cb73c1
commit
8e40444434
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ extern void VID_Init8bitPalette (void);
|
|||
void
|
||||
VID_SDL_GammaCheck (void)
|
||||
{
|
||||
#if SDL_MAJOR_VERSION > 1 || (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION > 1)
|
||||
#if SDL_VERSION_ATLEAST(1, 1, 0)
|
||||
Uint16 redtable[256], greentable[256], bluetable[256];
|
||||
#else
|
||||
Uint8 redtable[256], greentable[256], bluetable[256];
|
||||
|
|
Loading…
Reference in a new issue