diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-02-02 18:46:14 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-02-02 18:46:14 +0200 |
commit | 9b1b57a52390ecc98c27b2f923052511c387ba3d (patch) | |
tree | efffdc8ec11d31a793e8cdb3926264632dbb6854 /src/light.cpp | |
parent | a75876f24870b0c092a59b29fd25c9f2b34d334e (diff) | |
download | minetest-9b1b57a52390ecc98c27b2f923052511c387ba3d.tar.gz minetest-9b1b57a52390ecc98c27b2f923052511c387ba3d.tar.bz2 minetest-9b1b57a52390ecc98c27b2f923052511c387ba3d.zip |
some tweaking
Diffstat (limited to 'src/light.cpp')
-rw-r--r-- | src/light.cpp | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/light.cpp b/src/light.cpp index fec800874..c0255f7fb 100644 --- a/src/light.cpp +++ b/src/light.cpp @@ -29,6 +29,24 @@ with this program; if not, write to the Free Software Foundation, Inc., u8 light_decode_table[LIGHT_MAX+1] = { 0, +7, +11, +15, +21, +29, +42, +53, +69, +85, +109, +135, +167, +205, +255, +}; +/*u8 light_decode_table[LIGHT_MAX+1] = +{ +0, 6, 8, 11, @@ -43,7 +61,7 @@ u8 light_decode_table[LIGHT_MAX+1] = 143, 191, 255, -}; +};*/ /*u8 light_decode_table[LIGHT_MAX+1] = { 0, |