Adds colourblind mode and a colour matrix editor (#17933)

* Colourblind mode + Matrix editor

* increase that

* Protanopia filter

* Tritanopia filter

* The SQL part

* Refactor

* you saw nothing
This commit is contained in:
AffectedArc07
2022-06-10 17:52:28 -06:00
committed by GitHub
parent 0d465cdd6f
commit 7d5a7ad85d
20 changed files with 266 additions and 61 deletions
+1 -1
View File
@@ -371,7 +371,7 @@
#define INVESTIGATE_BOMB "bombs"
// The SQL version required by this version of the code
#define SQL_VERSION 36
#define SQL_VERSION 37
// Vending machine stuff
#define CAT_NORMAL 1
+6
View File
@@ -121,3 +121,9 @@
#define TAB_CHAR 0
#define TAB_GAME 1
#define TAB_GEAR 2
// Colourblind modes
#define COLOURBLIND_MODE_NONE "None"
#define COLOURBLIND_MODE_DEUTER "Red-green (green weak, deuteranopia)"
#define COLOURBLIND_MODE_PROT "Red-green (red weak, protanopia)"
#define COLOURBLIND_MODE_TRIT "Blue-yellow (tritanopia)"