Fix swapped active/selected lattice vertex color

This commit is contained in:
2019-01-09 13:09:03 +11:00
parent df8e8e5b6b
commit 4069b10be8

View File

@@ -1,8 +1,8 @@
flat in int vertFlag;
#define VERTEX_SELECTED (1 << 0)
#define VERTEX_ACTIVE (1 << 1)
#define VERTEX_ACTIVE (1 << 0)
#define VERTEX_SELECTED (1 << 1)
out vec4 FragColor;