From: Daniel Karbach Date: Mon, 21 Dec 2015 12:17:47 +0000 (+0100) Subject: fix default outline color X-Git-Url: http://git.localhorst.tv/?p=blank.git;a=commitdiff_plain;h=6513b55584093a86ce1e369e054263dd75c295c8 fix default outline color actually, white doesn't look so bad for an outline, maybe that should be the default (but 255 then, not -1) --- diff --git a/src/world/block.cpp b/src/world/block.cpp index c861893..f518b64 100644 --- a/src/world/block.cpp +++ b/src/world/block.cpp @@ -76,7 +76,7 @@ BlockType::BlockType() noexcept , textures() , hsl_mod(0, 255, 255) , rgb_mod(255, 255, 255) -, outline_color(-1, -1, -1) +, outline_color(0, 0, 0) , gravity() , name("anonymous") , label("some block")