--- src/gui/sdl_gui.cpp.orig 2026-06-02 15:52:54 UTC +++ src/gui/sdl_gui.cpp @@ -4075,6 +4075,7 @@ void GUI_Shortcut(int select) { shortcutid=select; shortcut=true; sel = select; +#ifndef __FreeBSD__ #if defined(USE_TTF) if (ttf.inUse && !confres) { ttf_switch_off(); @@ -4084,12 +4085,14 @@ void GUI_Shortcut(int select) { } else #endif RunCfgTool(0); +#endif } void GUI_Run(bool pressed) { if (pressed || running) return; sel = -1; +#ifndef __FreeBSD__ #if defined(USE_TTF) if (ttf.inUse) { ttf_switch_off(); @@ -4099,4 +4102,5 @@ void GUI_Run(bool pressed) { } else #endif RunCfgTool(0); +#endif }