diff options
author | aap <aap@papnet.eu> | 2020-08-11 18:39:53 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-08-11 18:40:04 +0200 |
commit | b468d010a8a185bd04cdb1fb41810a189971e583 (patch) | |
tree | 8eda0c65a57dd11653252fcca2bbbd64c9343b5c /src/core/Camera.cpp | |
parent | Merge pull request #683 from majesticCoding/miami (diff) | |
download | re3-b468d010a8a185bd04cdb1fb41810a189971e583.tar re3-b468d010a8a185bd04cdb1fb41810a189971e583.tar.gz re3-b468d010a8a185bd04cdb1fb41810a189971e583.tar.bz2 re3-b468d010a8a185bd04cdb1fb41810a189971e583.tar.lz re3-b468d010a8a185bd04cdb1fb41810a189971e583.tar.xz re3-b468d010a8a185bd04cdb1fb41810a189971e583.tar.zst re3-b468d010a8a185bd04cdb1fb41810a189971e583.zip |
Diffstat (limited to 'src/core/Camera.cpp')
-rw-r--r-- | src/core/Camera.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/Camera.cpp b/src/core/Camera.cpp index 2f977a20..df778815 100644 --- a/src/core/Camera.cpp +++ b/src/core/Camera.cpp @@ -514,7 +514,12 @@ CCamera::Process(void) int tableIndex = (int)(DEGTORAD(DrunkAngle)/TWOPI * CParticle::SIN_COS_TABLE_SIZE) & CParticle::SIN_COS_TABLE_SIZE-1; DrunkAngle += 5.0f; +#ifndef FIX_BUGS + // This just messes up interpolation, probably not what they intended + // and multiplying the interpolated FOV is also a bit extreme + // so let's not do any of this nonsense Cams[ActiveCam].FOV *= (1.0f + CMBlur::Drunkness); +#endif CamSource.x += -0.02f*CMBlur::Drunkness * CParticle::m_CosTable[tableIndex]; CamSource.y += -0.02f*CMBlur::Drunkness * CParticle::m_SinTable[tableIndex]; |