Reverted enum values to fix UT regression

dev-ui
Piotr Dziwinski 2013-06-22 01:16:40 +02:00
parent 28b4e9a634
commit 1377e48910
1 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@ struct LightProgression
*/
enum LightPriority
{
LIGHT_PRI_HIGHEST = 1, //!< always highest weight (always picked)
LIGHT_PRI_HIGH = 2, //!< high weight
LIGHT_PRI_LOW = 3 //!< low weight
LIGHT_PRI_HIGHEST = 0, //!< always highest weight (always picked)
LIGHT_PRI_HIGH = 1, //!< high weight
LIGHT_PRI_LOW = 2 //!< low weight
};
/**