summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-12-08 09:59:43 -0800
committerVito Caputo <vcaputo@pengaru.com>2022-12-08 10:13:41 -0800
commit9b6d98d1f727abd0629da68665d69d646e0bf764 (patch)
tree6f488b5783dbff13214dba5398172e1e7de0cb3e /src
parent449572d0bd73b10d9dce52f184279ce196794500 (diff)
game: fixup GAME_MASK_SCALE to match .ans aspect ratio
The mask is rectangular, the quick-n-dirty scale I used was square.
Diffstat (limited to 'src')
-rw-r--r--src/game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.c b/src/game.c
index f2709b8..84b1a85 100644
--- a/src/game.c
+++ b/src/game.c
@@ -79,7 +79,7 @@
#define GAME_ADULT_SCALE (v3f_t){ .07f, .07f, .07f }
#define GAME_BABY_SCALE (v3f_t){ .05f, .05f, .05f }
-#define GAME_MASK_SCALE (v3f_t){ .04f, .04f, .04f }
+#define GAME_MASK_SCALE (v3f_t){ .04299f, .03f, .03f }
#define GAME_TEEPEE_SCALE (v3f_t){ .07f, .07f, .07f }
#define GAME_TEEPEE_ICON_SCALE (v3f_t){ .06f, .06f, .06f }
#define GAME_TV_SCALE (v3f_t){ .16216f, .2f, .2f }
© All Rights Reserved