mirror of
https://github.com/halpz/re3.git
synced 2025-12-22 17:42:49 +00:00
Updates Draw.cpp, MusicManager.cpp.
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "Draw.h"
|
||||
#include "Frontend.h"
|
||||
#include "Camera.h"
|
||||
|
||||
float CDraw::ms_fAspectRatio;
|
||||
|
||||
float &CDraw::ms_fNearClipZ = *(float*)0x8E2DC4;
|
||||
float &CDraw::ms_fFarClipZ = *(float*)0x9434F0;
|
||||
@@ -11,6 +15,18 @@ uint8 &CDraw::FadeRed = *(uint8*)0x95CD90;
|
||||
uint8 &CDraw::FadeGreen = *(uint8*)0x95CD71;
|
||||
uint8 &CDraw::FadeBlue = *(uint8*)0x95CD53;
|
||||
|
||||
void CDraw::CalculateAspectRatio() {
|
||||
if (FrontEndMenuManager.m_PrefsUseWideScreen) {
|
||||
ms_fAspectRatio = 1.7777778f;
|
||||
}
|
||||
else if (TheCamera.m_WideScreenOn) {
|
||||
ms_fAspectRatio = 1.25f;
|
||||
}
|
||||
else {
|
||||
ms_fAspectRatio = 1.3333334f;
|
||||
}
|
||||
}
|
||||
|
||||
static float hFov2vFov(float hfov)
|
||||
{
|
||||
float w = SCREENW;
|
||||
|
||||
Reference in New Issue
Block a user