\r
/* note: these might become non-constant in future */\r
#if MENU_X2\r
-static const int me_mfont_w = 16, me_mfont_h = 20;\r
-static const int me_sfont_w = 12, me_sfont_h = 20;\r
+const int me_mfont_w = 16, me_mfont_h = 20;\r
+const int me_sfont_w = 12, me_sfont_h = 20;\r
#else\r
-static const int me_mfont_w = 8, me_mfont_h = 10;\r
-static const int me_sfont_w = 6, me_sfont_h = 10;\r
+const int me_mfont_w = 8, me_mfont_h = 10;\r
+const int me_sfont_w = 6, me_sfont_h = 10;\r
#endif\r
\r
static int g_menu_filter_off;\r
}\r
}\r
\r
-static void smalltext_out16(int x, int y, const char *texto, int color)\r
+void smalltext_out16(int x, int y, const char *texto, int color)\r
{\r
char buffer[128];\r
int maxw = (g_menuscreen_w - x) / me_sfont_w;\r
extern int g_autostateld_opt;
+extern const int me_mfont_w, me_mfont_h;
+extern const int me_sfont_w, me_sfont_h;
+
void menu_init_base(void);
void menu_update_msg(const char *msg);
void text_out16(int x, int y, const char *texto, ...);
+void smalltext_out16(int x, int y, const char *texto, int color);
menu_entry *me_list_get_first(void);
menu_entry *me_list_get_next(void);