From 0a0a2c4a410567fa0b08503ffa029d015baee285 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 30 Jan 2016 12:59:15 +0100 Subject: [PATCH] - removed a warning. --- src/g_level.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_level.cpp b/src/g_level.cpp index d799cc893..e8bf16004 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -1202,7 +1202,7 @@ void G_FinishTravel () while ( (pawn = next) != NULL) { next = it.Next (); - pnum = (pawn->player - players); + pnum = int(pawn->player - players); pawn->ChangeStatNum (STAT_PLAYER); pawndup = pawn->player->mo; start = NULL;