1
0
forked from 0ad/0ad

Updated HEIGHT_SCALE to the actual height scale.

This was SVN commit r102.
This commit is contained in:
notpete 2003-11-25 20:10:25 +00:00
parent 874df3bb1c
commit 97f7e8a5eb

View File

@ -1,6 +1,6 @@
//***********************************************************
//
// Name: TerrGlobals.h
// Name: TerrGlobals.H
// Last Update: 27/2/02
// Author: Poya Manouchehri
//
@ -14,7 +14,7 @@
const int PATCH_SIZE = 16;
const int CELL_SIZE = 4; //horizontal scale of the patches
const float HEIGHT_SCALE = 1.0f;
const float HEIGHT_SCALE = 0.35f;
//only 3x3 patches loaded at a time
const int NUM_PATCHES_PER_SIDE = 20;
@ -26,4 +26,4 @@ const int MAP_SIZE = ( (NUM_PATCHES_PER_SIDE*PATCH_SIZE)+1 );
#endif
#endif