mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 07:04:09 +00:00
record init
This commit is contained in:
parent
6b06ee21ad
commit
917fa80c18
5 changed files with 222 additions and 10 deletions
|
@ -21,6 +21,7 @@
|
|||
#include "Hud.h"
|
||||
#include "Text.h"
|
||||
#include "Timer.h"
|
||||
#include "Record.h"
|
||||
#include "World.h"
|
||||
#include "Vehicle.h"
|
||||
#include "Ped.h"
|
||||
|
@ -657,9 +658,14 @@ void CPad::Update(int16 unk)
|
|||
{
|
||||
OldState = NewState;
|
||||
|
||||
NewState = ReconcileTwoControllersInput(PCTempKeyState, PCTempJoyState);
|
||||
NewState = ReconcileTwoControllersInput(PCTempMouseState, NewState);
|
||||
|
||||
#if (defined GTA_PS2 || defined FIX_BUGS)
|
||||
if (!CRecordDataForGame::IsPlayingBack() /* && !CRecordDataForChase::ShouldThisPadBeLeftAlone(unk) */)
|
||||
#endif
|
||||
{
|
||||
NewState = ReconcileTwoControllersInput(PCTempKeyState, PCTempJoyState);
|
||||
NewState = ReconcileTwoControllersInput(PCTempMouseState, NewState);
|
||||
}
|
||||
|
||||
PCTempJoyState.Clear();
|
||||
PCTempKeyState.Clear();
|
||||
PCTempMouseState.Clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue