silence a noisy warning

This commit is contained in:
galtgendo 2014-03-02 12:11:23 +01:00
parent bf0b850088
commit 8f97e96af1
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ struct FColormap
void GetFixedColormap()
{
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)