- fixed some warnings.

- A_SetRenderStyle should not default to STYLE_None.
This commit is contained in:
Christoph Oelckers 2016-10-02 01:00:07 +02:00
commit 51ffd6d9c6
3 changed files with 2 additions and 3 deletions

View file

@ -3526,7 +3526,7 @@ void AActor::Tick ()
sector_t *sec = node->m_sector;
DVector2 scrollv;
if (level.Scrolls.Size() > (sec-sectors))
if (level.Scrolls.Size() > unsigned(sec-sectors))
{
scrollv = level.Scrolls[sec - sectors];
}