]> git.localhorst.tv Git - blank.git/commitdiff
fix default outline color
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 21 Dec 2015 12:17:47 +0000 (13:17 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 21 Dec 2015 13:31:59 +0000 (14:31 +0100)
actually, white doesn't look so bad for an outline, maybe that
should be the default (but 255 then, not -1)

src/world/block.cpp

index c8618939e825bebf690a9f52903493d862b0ccad..f518b64aeabc96ad4a7cc8d8313582cb64348f8f 100644 (file)
@@ -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")