From 925de1bb793b7b6c97f476530048a8d6443bd232 Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Mon, 28 Apr 2014 17:43:50 +0200 Subject: [PATCH] Fix default colors being wrong --- TileGenerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TileGenerator.h b/TileGenerator.h index 04a5947..8a844c8 100644 --- a/TileGenerator.h +++ b/TileGenerator.h @@ -14,7 +14,7 @@ struct Color { Color(): r(0xFF), g(0xFF), b(0xFF), a(0) {}; - Color(uint8_t r, uint8_t g, uint8_t b): r(r), g(g), b(b), a(0xFF) {}; + Color(uint8_t r, uint8_t g, uint8_t b): r(r), g(g), b(b), a(0) {}; Color(uint8_t r, uint8_t g, uint8_t b, uint8_t a): r(r), g(g), b(b), a(a) {}; uint8_t r; uint8_t g;