Skip to content

Commit

Permalink
Fix signed/unsigned comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Jun 28, 2024
1 parent 626a007 commit 78299e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/nodes/signals/emit_member_signal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class OScriptNodeEmitMemberSignalInstance : public OScriptNodeInstance
if (uint64_t(_args.size()) != _method.arguments.size())
_args.resize(_method.arguments.size());

for (int i = 0; i < _method.arguments.size(); i++)
for (uint64_t i = 0; i < _method.arguments.size(); i++)
_args[i] = p_context.get_input(i + 2);
}

Expand Down

0 comments on commit 78299e7

Please sign in to comment.