summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2021-01-19 20:42:16 +0100
committeraap <aap@papnet.eu>2021-01-19 20:42:16 +0100
commit7e136a792f381b4c1d310c7058d779e9e87aeb6c (patch)
treeb7cac1f66f8b1ccfe2c34ff9b015de549c5d9733 /src/core
parentPSP rendering and shader cleanup (diff)
downloadre3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.tar
re3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.tar.gz
re3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.tar.bz2
re3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.tar.lz
re3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.tar.xz
re3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.tar.zst
re3-7e136a792f381b4c1d310c7058d779e9e87aeb6c.zip
Diffstat (limited to '')
-rw-r--r--src/core/Camera.cpp5
-rw-r--r--src/core/re3.cpp4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/core/Camera.cpp b/src/core/Camera.cpp
index 992c7d74..951b7c41 100644
--- a/src/core/Camera.cpp
+++ b/src/core/Camera.cpp
@@ -3863,7 +3863,7 @@ CCamera::GetScreenFadeStatus(void)
}
-
+//--LCS: TODO
void
CCamera::RenderMotionBlur(void)
{
@@ -3872,7 +3872,8 @@ CCamera::RenderMotionBlur(void)
CMBlur::MotionBlurRender(m_pRwCamera,
m_BlurRed, m_BlurGreen, m_BlurBlue,
- m_motionBlur, m_BlurType, m_imotionBlurAddAlpha);
+// m_motionBlur, m_BlurType, m_imotionBlurAddAlpha);
+ m_motionBlur, m_BlurType, 32); // hack hack
}
void
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index bbc02d26..12b49c9a 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -651,8 +651,8 @@ extern bool gbRenderWorld2;
#endif
#ifdef EXTENDED_COLOURFILTER
- static const char *filternames[] = { "None", "PS2" };
- e = DebugMenuAddVar("Render", "Colourfilter", &CPostFX::EffectSwitch, nil, 1, CPostFX::POSTFX_OFF, CPostFX::POSTFX_NORMAL, filternames);
+ static const char *filternames[] = { "None", "PSP", "PS2" };
+ e = DebugMenuAddVar("Render", "Colourfilter", &CPostFX::EffectSwitch, nil, 1, CPostFX::POSTFX_OFF, CPostFX::POSTFX_PS2, filternames);
DebugMenuEntrySetWrap(e, true);
DebugMenuAddVar("Render", "Intensity", &CPostFX::Intensity, nil, 0.05f, 0, 10.0f);
DebugMenuAddVarBool8("Render", "Blur", &CPostFX::BlurOn, nil);