menu: Display menu drivers in alphabetical order.

This commit is contained in:
orbea 2019-01-06 17:37:59 -08:00
parent 9b46caa6db
commit 161785f588

View File

@ -85,26 +85,26 @@ float osk_dark[16] = {
/* Menu drivers */ /* Menu drivers */
static const menu_ctx_driver_t *menu_ctx_drivers[] = { static const menu_ctx_driver_t *menu_ctx_drivers[] = {
#if defined(HAVE_OZONE)
&menu_ctx_ozone,
#endif
#if defined(HAVE_XUI)
&menu_ctx_xui,
#endif
#if defined(HAVE_MATERIALUI) #if defined(HAVE_MATERIALUI)
&menu_ctx_mui, &menu_ctx_mui,
#endif #endif
#if defined(HAVE_NUKLEAR) #if defined(HAVE_NUKLEAR)
&menu_ctx_nuklear, &menu_ctx_nuklear,
#endif #endif
#if defined(HAVE_XMB) #if defined(HAVE_OZONE)
&menu_ctx_xmb, &menu_ctx_ozone,
#endif
#if defined(HAVE_RGUI)
&menu_ctx_rgui,
#endif #endif
#if defined(HAVE_STRIPES) #if defined(HAVE_STRIPES)
&menu_ctx_stripes, &menu_ctx_stripes,
#endif #endif
#if defined(HAVE_RGUI) #if defined(HAVE_XMB)
&menu_ctx_rgui, &menu_ctx_xmb,
#endif
#if defined(HAVE_XUI)
&menu_ctx_xui,
#endif #endif
#if defined(HAVE_ZARCH) #if defined(HAVE_ZARCH)
&menu_ctx_zarch, &menu_ctx_zarch,