Compare commits
No commits in common. "4dac834555be1705c9f083d0354ad928cc1e60ac" and "3d2e9e1f0a65f54e825bd465f91c85fef8338960" have entirely different histories.
4dac834555
...
3d2e9e1f0a
@ -72,10 +72,10 @@ namespace AxibugEmuOnline.Client
|
||||
var frameGap = App.roomMgr.netReplay.mDiffFrameCount;
|
||||
if (frameGap > 10000) return;
|
||||
|
||||
if (frameGap > 2 && frameGap < 6) skipFrameCount = 1;
|
||||
if (frameGap > 3 && frameGap < 6) skipFrameCount = 1;
|
||||
else if (frameGap > 7 && frameGap < 12) skipFrameCount = 2;
|
||||
else if (frameGap > 13 && frameGap < 20) skipFrameCount = 3;
|
||||
else skipFrameCount = frameGap - 2;
|
||||
else skipFrameCount = frameGap - 3;
|
||||
|
||||
if (skipFrameCount > 0) App.log.Debug($"SKIP FRAME : {skipFrameCount}");
|
||||
for (int i = 0; i < skipFrameCount; i++)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user