mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 03:51:18 +00:00
Fix for uninitialized var warning
This commit is contained in:
parent
c5b717254c
commit
a342e2d1d1
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@
|
||||||
#define MDC_DIST_SCALE 0.05f
|
#define MDC_DIST_SCALE 0.05f
|
||||||
|
|
||||||
/* mdc decoding normal table */
|
/* mdc decoding normal table */
|
||||||
double mdcNormals[ 256 ][ 3 ] =
|
const double mdcNormals[ 256 ][ 3 ] =
|
||||||
{
|
{
|
||||||
{ 1.000000, 0.000000, 0.000000 },
|
{ 1.000000, 0.000000, 0.000000 },
|
||||||
{ 0.980785, 0.195090, 0.000000 },
|
{ 0.980785, 0.195090, 0.000000 },
|
||||||
|
|
Loading…
Reference in a new issue