diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-29 01:01:31 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-29 01:01:31 +0200 |
| commit | e5bbfc6dc49efac525fed276cd734392575616f7 (patch) | |
| tree | 9d264fd2097c69cb443ff00a6cfff3c6f1a0f625 /src | |
| parent | 2cd99b1bcf0e0aa1dc53df2c43ae6a1d610efbea (diff) | |
| download | jancity-e5bbfc6dc49efac525fed276cd734392575616f7.tar.gz | |
menu.c: center play button on screen
Diffstat (limited to 'src')
| -rw-r--r-- | src/menu/src/menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu/src/menu.c b/src/menu/src/menu.c index 12da1a8..41adbb5 100644 --- a/src/menu/src/menu.c +++ b/src/menu/src/menu.c @@ -27,6 +27,8 @@ int menu(void) play.on_pressed = on_pressed; play.arg = &start; play.w = 140; + play.common.hcentered = true; + play.common.vcentered = true; play.label.text = "Play"; { @@ -44,8 +46,6 @@ int menu(void) peripheral_update(&p); camera_update(&cam, &p); - play.common.x = screen_w / 2 - play.w / 2; - play.common.y = screen_h / 2 - 20; play.label.common.x = play.w / 2 - 20; play.label.common.y = 4; |
