summaryrefslogtreecommitdiffstats
path: root/src/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu.c')
-rw-r--r--src/menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/menu.c b/src/menu.c
index b171d2b..3c037a8 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -203,10 +203,12 @@ _mf_menu_form(SDL_Renderer *renderer, TTF_Font *text_font,
mftk_blank_new(),
MFTK_GRID_HALIGN_R|MFTK_GRID_VALIGN_T,
mftk_grid_new(1, 2, 0, MF_BTN_M,
- mftk_button_new(text_font, "Quit", MF_BTN_P,
+ mftk_button_new(text_font, "Quit",
+ MF_BTN_P, MF_BTN_B,
&_mf_menu_quit, NULL, renderer),
MFTK_GRID_HALIGN_L|MFTK_GRID_VALIGN_T,
- mftk_button_new(text_font, "Play", MF_BTN_P,
+ mftk_button_new(text_font, "Play",
+ MF_BTN_P, MF_BTN_B,
&_mf_menu_play, menu, renderer),
MFTK_GRID_HALIGN_L|MFTK_GRID_VALIGN_T
),