mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- Fixed MSVC warning.
SVN r3292 (trunk)
This commit is contained in:
parent
faa122ede3
commit
d6b6a73fee
1 changed files with 1 additions and 1 deletions
|
@ -1248,7 +1248,7 @@ DEFINE_PROPERTY(visibletoteam, I, Actor)
|
|||
//==========================================================================
|
||||
DEFINE_PROPERTY(visibletoplayerclass, S_s, Actor)
|
||||
{
|
||||
for(unsigned int i = 0;i < PROP_PARM_COUNT;++i)
|
||||
for(int i = 0;i < PROP_PARM_COUNT;++i)
|
||||
{
|
||||
PROP_STRING_PARM(n, i);
|
||||
info->VisibleToPlayerClass.Push(FindClassTentative(n, "PlayerPawn"));
|
||||
|
|
Loading…
Reference in a new issue