summaryrefslogtreecommitdiffstats
path: root/src/defs.h
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2021-08-08 00:59:38 (EDT)
committer P. J. McDermott <pj@pehjota.net>2021-08-08 02:38:50 (EDT)
commitc97b90494b626011aa562ae55ee7cfde8867feca (patch)
treeab8bd46636ad379cab52093dba4915c31e1df332 /src/defs.h
parentaf5967c92418dbaf3a4ca440e10c6567cfe78d2f (diff)
downloadmazefight-c97b90494b626011aa562ae55ee7cfde8867feca.zip
mazefight-c97b90494b626011aa562ae55ee7cfde8867feca.tar.gz
mazefight-c97b90494b626011aa562ae55ee7cfde8867feca.tar.bz2
player: Render circle
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/defs.h b/src/defs.h
index 501bbb2..e455281 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -44,6 +44,7 @@
#define MF_PLAYER_SPEED 2
#define MF_PLAYER_TURN_TIME 15
+#define MF_PLAYER_P 2
/* Colors */
#define MF_COLOR_BACK_R 0xAF /* Background color */
@@ -75,8 +76,8 @@
#define MF_COLOR_CHKM_B 0x00
#define MF_COLOR_CHKM_A 0xFF
#define MF_COLOR_PLYR_R 0x00 /* Player color */
-#define MF_COLOR_PLYR_G 0x00
-#define MF_COLOR_PLYR_B 0x00
+#define MF_COLOR_PLYR_G 0xAF
+#define MF_COLOR_PLYR_B 0x7F
#define MF_COLOR_PLYR_A 0xFF
#endif /* MF_DEFS_H_ */