mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 13:10:33 +00:00
CSpecialFX and some other classes
This commit is contained in:
parent
b97f86deea
commit
881db86895
5 changed files with 178 additions and 126 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "DMAudio.h"
|
||||
#include "Record.h"
|
||||
#include "Timer.h"
|
||||
#include "SpecialFX.h"
|
||||
|
||||
uint32 CTimer::m_snTimeInMilliseconds;
|
||||
PauseModeTime CTimer::m_snTimeInMillisecondsPauseMode = 1;
|
||||
|
@ -141,7 +142,7 @@ void CTimer::Update(void)
|
|||
}
|
||||
}
|
||||
|
||||
if ( ms_fTimeStep < 0.01f && !GetIsPaused() )
|
||||
if ( ms_fTimeStep < 0.01f && !GetIsPaused() && !CSpecialFX::bSnapShotActive)
|
||||
ms_fTimeStep = 0.01f;
|
||||
|
||||
ms_fTimeStepNonClipped = ms_fTimeStep;
|
||||
|
|
|
@ -969,7 +969,7 @@ Render2dStuff(void)
|
|||
else
|
||||
CHud::Draw();
|
||||
// TODO(Miami)
|
||||
// CSpecialFX::Render2DFXs();
|
||||
CSpecialFX::Render2DFXs();
|
||||
CUserDisplay::OnscnTimer.ProcessForDisplay();
|
||||
CMessages::Display();
|
||||
CDarkel::DrawMessages();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue