mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-25 00:43:51 +01:00
Fix default colors being wrong
This commit is contained in:
parent
79d338a90c
commit
925de1bb79
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user