summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/Tev.cpp
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2024-09-21 21:53:34 +0100
committerTillmann Karras <tilkax@gmail.com>2024-09-24 22:00:03 +0100
commit0a299a4e1e2d76d46b458bd5f07a3de42b53e688 (patch)
tree342b4b7e97799380930361df043ff9cc271dd354 /Source/Core/VideoBackends/Software/Tev.cpp
parent98add9faf0369b6a69c2d29d3d4cd90bbad02d65 (diff)
Sw/Tev: drop unused macro
Diffstat (limited to 'Source/Core/VideoBackends/Software/Tev.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/Tev.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Core/VideoBackends/Software/Tev.cpp b/Source/Core/VideoBackends/Software/Tev.cpp
index 95a19ae7f1..674c545759 100644
--- a/Source/Core/VideoBackends/Software/Tev.cpp
+++ b/Source/Core/VideoBackends/Software/Tev.cpp
@@ -23,12 +23,6 @@
#include "VideoCommon/VideoConfig.h"
#include "VideoCommon/XFMemory.h"
-#ifdef _DEBUG
-#define ALLOW_TEV_DUMPS 1
-#else
-#define ALLOW_TEV_DUMPS 0
-#endif
-
static inline s16 Clamp255(s16 in)
{
return std::clamp<s16>(in, 0, 255);