summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-07-19 02:02:50 +0200
committerNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-07-19 02:02:50 +0200
commit821ff68f54581917e9f882058c828e6c457eb93b (patch)
treefbe89540ee56d5a9adb534f95d81eabb4480cf31 /src
parente8eb4d233b825a55f16953bc82a8b9c6d819b32c (diff)
downloadminetest-821ff68f54581917e9f882058c828e6c457eb93b.tar.gz
minetest-821ff68f54581917e9f882058c828e6c457eb93b.tar.bz2
minetest-821ff68f54581917e9f882058c828e6c457eb93b.zip
* initialize liquid_kind properly so compiler does not bitch about it
Diffstat (limited to 'src')
-rw-r--r--src/map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp
index cf8692bff..aa064637f 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -1575,7 +1575,7 @@ void Map::transformLiquids(core::map<v3s16, MapBlock*> & modified_blocks)
Collect information about current node
*/
s8 liquid_level = -1;
- u8 liquid_kind;
+ u8 liquid_kind = CONTENT_IGNORE;
LiquidType liquid_type = content_features(n0.d).liquid_type;
switch (liquid_type) {
case LIQUID_SOURCE: