Skip to content

Commit

Permalink
menu: Display menu drivers in alphabetical order.
Browse files Browse the repository at this point in the history
  • Loading branch information
orbea committed Jan 7, 2019
1 parent 9b46caa commit 161785f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions menu/menu_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,26 +85,26 @@ float osk_dark[16] = {

/* Menu 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)
&menu_ctx_mui,
#endif
#if defined(HAVE_NUKLEAR)
&menu_ctx_nuklear,
#endif
#if defined(HAVE_XMB)
&menu_ctx_xmb,
#if defined(HAVE_OZONE)
&menu_ctx_ozone,
#endif
#if defined(HAVE_RGUI)
&menu_ctx_rgui,
#endif
#if defined(HAVE_STRIPES)
&menu_ctx_stripes,
#endif
#if defined(HAVE_RGUI)
&menu_ctx_rgui,
#if defined(HAVE_XMB)
&menu_ctx_xmb,
#endif
#if defined(HAVE_XUI)
&menu_ctx_xui,
#endif
#if defined(HAVE_ZARCH)
&menu_ctx_zarch,
Expand Down

0 comments on commit 161785f

Please sign in to comment.