mirror of
https://github.com/minetest/minetestmapper.git
synced 2025-08-19 08:20:23 +02:00
Fix default colors being wrong
This commit is contained in:
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
struct Color {
|
struct Color {
|
||||||
Color(): r(0xFF), g(0xFF), b(0xFF), a(0) {};
|
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) {};
|
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 r;
|
||||||
uint8_t g;
|
uint8_t g;
|
||||||
|
Reference in New Issue
Block a user