From a3dc2149d4073b72d44868457905b2cfcb55544d Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 28 Jun 2012 04:55:44 +0000 Subject: [PATCH] - Adjust voxel scale further, under Enjay's tutelage. SVN r3713 (trunk) --- src/r_things.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/r_things.cpp b/src/r_things.cpp index d76375057..7092a0658 100644 --- a/src/r_things.cpp +++ b/src/r_things.cpp @@ -2251,8 +2251,8 @@ void R_DrawVoxel(fixed_t dasprx, fixed_t daspry, fixed_t dasprz, angle_t daspran // Shift the scales from 16 bits of fractional precision to 6. // Also do some magic voodoo scaling to make them the right size. - daxscale = daxscale / (0xD000 >> 6); - dayscale = dayscale / (0xD000 >> 6); + daxscale = daxscale / (0xC400 >> 6); + dayscale = dayscale / (0xC400 >> 6); cosang = viewcos >> 2; sinang = -viewsin >> 2;