mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Fix gcc warning
This commit is contained in:
parent
eb2b5269f9
commit
348b73eb83
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ namespace swrenderer
|
|||
}
|
||||
|
||||
// New visplane algorithm uses hash table -- killough
|
||||
hash = isskybox ? MAXVISPLANES : CalcHash(picnum.GetIndex(), lightlevel, height);
|
||||
hash = isskybox ? ((unsigned)MAXVISPLANES) : CalcHash(picnum.GetIndex(), lightlevel, height);
|
||||
|
||||
RenderPortal *renderportal = RenderPortal::Instance();
|
||||
|
||||
|
|
Loading…
Reference in a new issue