Control: owner -1 ! Control: tags -1 + patch The problem is the declaration of function set_font_size. I added the bool parameter to the declaration.
-void set_font_size(); +void set_font_size(bool); See attached patch file for more information.
Index: b/src/t4k_menu.c =================================================================== --- a/src/t4k_menu.c +++ b/src/t4k_menu.c @@ -151,7 +151,7 @@ SDL_Surface** render_buttons(MenuNode* char* find_title_length(MenuNode* menu, int* length); char* find_longest_text(MenuNode* menu, int* length); int find_longest_menu_page(MenuNode* menu); -void set_font_size(); +void set_font_size(bool); void prerender_menu(MenuNode* menu); int min(int a, int b); int max(int a, int b);