Skip to content

Commit da16c59

Browse files
committed
fixup: warning C4018: '<': signed/unsigned mismatch
1 parent 08c5b3b commit da16c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/renderer/tr_bsp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3844,7 +3844,7 @@ void R_LoadEntities( lump_t *l, std::string &externalEntities )
38443844
{
38453845
Cmd::Args args( value );
38463846

3847-
for ( size_t i = 0; i < args.Argc(); i++ )
3847+
for ( int i = 0; i < args.Argc(); i++ )
38483848
{
38493849
const std::string& arg = args.Argv( i );
38503850

0 commit comments

Comments
 (0)