summaryrefslogtreecommitdiffstats
path: root/src/graphics
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2013-06-22 01:16:40 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2013-06-22 01:17:19 +0200
commit1377e48910c1bef1829c67740360b0a8309239a1 (patch)
tree674cd645e3461da11d02b08915f8c35fe3930264 /src/graphics
parent28b4e9a63450110978d60de80a9af2e901d49a97 (diff)
downloadcolobot-1377e48910c1bef1829c67740360b0a8309239a1.tar.gz
colobot-1377e48910c1bef1829c67740360b0a8309239a1.tar.bz2
colobot-1377e48910c1bef1829c67740360b0a8309239a1.zip
Reverted enum values to fix UT regression
Diffstat (limited to 'src/graphics')
-rw-r--r--src/graphics/engine/lightman.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphics/engine/lightman.h b/src/graphics/engine/lightman.h
index 9677555..a2f6044 100644
--- a/src/graphics/engine/lightman.h
+++ b/src/graphics/engine/lightman.h
@@ -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
};
/**