mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 17:50:34 +00:00
Add cutscene borders switch to the menu
This commit is contained in:
parent
00bba630f6
commit
6eb8f6ae5a
6 changed files with 44 additions and 3 deletions
|
@ -3,6 +3,7 @@
|
|||
#include "Draw.h"
|
||||
#include "Frontend.h"
|
||||
#include "Camera.h"
|
||||
#include "CutsceneMgr.h"
|
||||
|
||||
#ifdef ASPECT_RATIO_SCALE
|
||||
float CDraw::ms_fAspectRatio = DEFAULT_ASPECT_RATIO;
|
||||
|
@ -62,7 +63,10 @@ void
|
|||
CDraw::SetFOV(float fov)
|
||||
{
|
||||
#ifdef ASPECT_RATIO_SCALE
|
||||
ms_fScaledFOV = ConvertFOV(fov);
|
||||
if (!CCutsceneMgr::IsRunning())
|
||||
ms_fScaledFOV = ConvertFOV(fov);
|
||||
else
|
||||
ms_fScaledFOV = fov;
|
||||
#endif
|
||||
ms_fFOV = fov;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue