summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-01-18 20:06:59 +0100
committerSergeanur <s.anureev@yandex.ua>2021-01-18 20:06:59 +0100
commit91093305d65305722e380c0087c71469363a8396 (patch)
treeb589257deee2ecccf0617601da97c82fbb8385f5 /src/control
parentsync milessdk with re3mss (diff)
downloadre3-91093305d65305722e380c0087c71469363a8396.tar
re3-91093305d65305722e380c0087c71469363a8396.tar.gz
re3-91093305d65305722e380c0087c71469363a8396.tar.bz2
re3-91093305d65305722e380c0087c71469363a8396.tar.lz
re3-91093305d65305722e380c0087c71469363a8396.tar.xz
re3-91093305d65305722e380c0087c71469363a8396.tar.zst
re3-91093305d65305722e380c0087c71469363a8396.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Replay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Replay.cpp b/src/control/Replay.cpp
index 2e87d1a7..2dd66333 100644
--- a/src/control/Replay.cpp
+++ b/src/control/Replay.cpp
@@ -305,7 +305,7 @@ void CReplay::RecordThisFrame(void)
#endif
tGeneralPacket* general = (tGeneralPacket*)&Record.m_pBase[Record.m_nOffset];
general->type = REPLAYPACKET_GENERAL;
- general->camera_pos.CopyOnlyMatrix(&TheCamera.GetMatrix());
+ general->camera_pos.CopyOnlyMatrix(TheCamera.GetMatrix());
general->player_pos = FindPlayerCoors();
general->in_rcvehicle = CWorld::Players[CWorld::PlayerInFocus].m_pRemoteVehicle ? true : false;
Record.m_nOffset += sizeof(*general);