mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
silence a noisy warning
This commit is contained in:
parent
bf0b850088
commit
8f97e96af1
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ struct FColormap
|
||||||
void GetFixedColormap()
|
void GetFixedColormap()
|
||||||
{
|
{
|
||||||
Clear();
|
Clear();
|
||||||
colormap = gl_fixedcolormap >= CM_LITE? CM_DEFAULT : gl_fixedcolormap;
|
colormap = gl_fixedcolormap >= (int)CM_LITE? (int)CM_DEFAULT : gl_fixedcolormap;
|
||||||
}
|
}
|
||||||
|
|
||||||
FColormap & operator=(FDynamicColormap * from)
|
FColormap & operator=(FDynamicColormap * from)
|
||||||
|
|
Loading…
Reference in a new issue