diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-12-08 09:59:43 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-12-08 10:13:41 -0800 |
commit | 9b6d98d1f727abd0629da68665d69d646e0bf764 (patch) | |
tree | 6f488b5783dbff13214dba5398172e1e7de0cb3e /src | |
parent | 449572d0bd73b10d9dce52f184279ce196794500 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |