summaryrefslogtreecommitdiffstats
path: root/src/defs.h
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2021-08-03 18:24:49 (EDT)
committer P. J. McDermott <pj@pehjota.net>2021-08-03 18:24:49 (EDT)
commitbe35760db2ebc72913f88b512b93d1c66c2f4ef5 (patch)
tree2d954c6a33735a730b3c5b1d317895b8db291067 /src/defs.h
parent69e7e111fb65cd3473e1aa3386d4607d95f34785 (diff)
downloadmazefight-be35760db2ebc72913f88b512b93d1c66c2f4ef5.zip
mazefight-be35760db2ebc72913f88b512b93d1c66c2f4ef5.tar.gz
mazefight-be35760db2ebc72913f88b512b93d1c66c2f4ef5.tar.bz2
splash: Add non-functional "Play" button
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/defs.h b/src/defs.h
index 0b7a47a..6f86aea 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -47,13 +47,17 @@
#define MF_COLOR_MAZE_G 0x00
#define MF_COLOR_MAZE_B 0x00
#define MF_COLOR_MAZE_A 0xFF
-#define MF_COLOR_FORM_R 0xDF /* Text/button color */
+#define MF_COLOR_FORM_R 0xDF /* Form background color */
#define MF_COLOR_FORM_G 0xDF
#define MF_COLOR_FORM_B 0xDF
#define MF_COLOR_FORM_A 0xDF
-#define MF_COLOR_FORE_R 0x00 /* Text/button color */
+#define MF_COLOR_FORE_R 0x00 /* Text color */
#define MF_COLOR_FORE_G 0x00
#define MF_COLOR_FORE_B 0x00
#define MF_COLOR_FORE_A 0xFF
+#define MF_COLOR_BUTN_R 0xAF /* Button fill color */
+#define MF_COLOR_BUTN_G 0xAF
+#define MF_COLOR_BUTN_B 0xAF
+#define MF_COLOR_BUTN_A 0xFF
#endif /* MF_DEFS_H_ */