mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
syntax
This commit is contained in:
parent
411a531eda
commit
c0db7fce38
@ -53,10 +53,10 @@ static void ProcessSiteMethod(WeaverLists weaverLists, MethodDefinition md)
|
|||||||
|
|
||||||
if (md.Body != null && md.Body.Instructions != null)
|
if (md.Body != null && md.Body.Instructions != null)
|
||||||
{
|
{
|
||||||
for (int iCount = 0; iCount < md.Body.Instructions.Count;)
|
for (int i = 0; i < md.Body.Instructions.Count;)
|
||||||
{
|
{
|
||||||
Instruction instr = md.Body.Instructions[iCount];
|
Instruction instr = md.Body.Instructions[i];
|
||||||
iCount += ProcessInstruction(weaverLists, md, instr, iCount);
|
i += ProcessInstruction(weaverLists, md, instr, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user