silenced some warnings.

This commit is contained in:
Christoph Oelckers 2023-12-21 00:03:37 +01:00
parent 27da9b6b79
commit af4eaf69e3
13 changed files with 27 additions and 26 deletions

View file

@ -852,7 +852,7 @@ DEFINE_ACTION_FUNCTION(_Wads, GetLumpLength)
{
PARAM_PROLOGUE;
PARAM_INT(lump);
ACTION_RETURN_INT(fileSystem.FileLength(lump));
ACTION_RETURN_INT((int)fileSystem.FileLength(lump));
}
//==========================================================================