summaryrefslogtreecommitdiff
path: root/src/hexen/p_lights.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hexen/p_lights.c')
-rw-r--r--src/hexen/p_lights.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/hexen/p_lights.c b/src/hexen/p_lights.c
index cec7c302..c7e85f9b 100644
--- a/src/hexen/p_lights.c
+++ b/src/hexen/p_lights.c
@@ -124,6 +124,10 @@ boolean EV_SpawnLight(line_t * line, byte * arg, lighttype_t type)
boolean think;
boolean rtn;
+ /*
+ Original code; redundant considering that a byte value is always
+ in the range 0-255:
+
arg1 = arg[1] > 255 ? 255 : arg[1];
arg1 = arg1 < 0 ? 0 : arg1;
arg2 = arg[2] > 255 ? 255 : arg[2];
@@ -132,6 +136,12 @@ boolean EV_SpawnLight(line_t * line, byte * arg, lighttype_t type)
arg3 = arg3 < 0 ? 0 : arg3;
arg4 = arg[4] > 255 ? 255 : arg[4];
arg4 = arg4 < 0 ? 0 : arg4;
+ */
+
+ arg1 = arg[1];
+ arg2 = arg[2];
+ arg3 = arg[3];
+ arg4 = arg[4];
secNum = -1;
rtn = false;