mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-25 05:45:40 +00:00
getter and enum fix
This commit is contained in:
parent
f56684d04e
commit
49ce64d6ac
1 changed files with 2 additions and 2 deletions
|
@ -83,10 +83,10 @@ void CGame::Process(void)
|
|||
{
|
||||
CPad::UpdatePads();
|
||||
TheCamera.SetMotionBlurAlpha(0);
|
||||
if (TheCamera.m_BlurType == 0 || TheCamera.m_BlurType == 1 || TheCamera.m_BlurType == 2)
|
||||
if (TheCamera.m_BlurType == MBLUR_NONE || TheCamera.m_BlurType == MBLUR_SNIPER || TheCamera.m_BlurType == MBLUR_NORMAL)
|
||||
TheCamera.SetMotionBlur(0, 0, 0, 0, 0);
|
||||
CCutsceneMgr::Update();
|
||||
if (!CCutsceneMgr::ms_cutsceneProcessing && !CTimer::GetIsCodePaused())
|
||||
if (!CCutsceneMgr::IsCutsceneProcessing() && !CTimer::GetIsCodePaused())
|
||||
FrontEndMenuManager.Process();
|
||||
CStreaming::Update();
|
||||
if (!CTimer::GetIsPaused())
|
||||
|
|
Loading…
Reference in a new issue