#Fatal Error:
1 messages · Page 1 of 1 (latest)
2023.06.12-15.51.38:677][359]LogWindows: Error: [Callstack] 0x00007ff72fc82c78 VIP.exe!ULagCompensationComponent::SaveFramePackage() [D:\Projects\VIP\Source\VIP\VIPComponent\LagCompensationComponent.cpp:316]
sorry for my discord illiteracy
line 316
this my my code: HistoryLength = FrameHistory.GetHead()->GetValue().Time - FrameHistory.GetTail()->GetValue().Time;
you have it equal to itself not minus
TY Megs, but i think i found it. checked the .h file add
need to add "FFramePackage& Package"
No
there's two methods
void SaveFramePackage();
void SaveFramePackage(FFramePackage& Package);
Though Meags is right it should be - not =
your issue is with the first one void SaveFramePackage();
correct, "if (Character == nullptr || !Character->HasAuthority()) return; we want to return if either is true correct?
Yeah that is right
the issue is with the minus and equal
line 316,
have you changed that yet and tested it?
That was it! Tested, all good. Ty! 😃