mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-18 15:42:34 +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()
|
||||
{
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue