Comment out bluetooth.png image for now until it has been added

to retroarch-assets
This commit is contained in:
twinaphex 2020-06-27 18:32:15 +02:00
parent 776e95d4e1
commit deb7fc5bf9
4 changed files with 18 additions and 0 deletions

View File

@ -412,8 +412,10 @@ uintptr_t ozone_entries_icon_get_texture(ozone_handle_t *ozone,
#endif
case MENU_INFO_MESSAGE:
return ozone->icons_textures[OZONE_ENTRIES_ICONS_TEXTURE_CORE_INFO];
#if 0
case MENU_BLUETOOTH:
return ozone->icons_textures[OZONE_ENTRIES_ICONS_TEXTURE_BLUETOOTH];
#endif
case MENU_WIFI:
return ozone->icons_textures[OZONE_ENTRIES_ICONS_TEXTURE_WIFI];
#ifdef HAVE_NETWORKING
@ -596,8 +598,10 @@ switch (id)
return "undo.png";
case OZONE_ENTRIES_ICONS_TEXTURE_CORE_INFO:
return "core-infos.png";
#if 0
case OZONE_ENTRIES_ICONS_TEXTURE_BLUETOOTH:
return "bluetooth.png";
#endif
case OZONE_ENTRIES_ICONS_TEXTURE_WIFI:
return "wifi.png";
case OZONE_ENTRIES_ICONS_TEXTURE_CORE_OPTIONS:

View File

@ -90,7 +90,9 @@ enum
OZONE_ENTRIES_ICONS_TEXTURE_LOADSTATE,
OZONE_ENTRIES_ICONS_TEXTURE_UNDO,
OZONE_ENTRIES_ICONS_TEXTURE_CORE_INFO,
#if 0
OZONE_ENTRIES_ICONS_TEXTURE_BLUETOOTH,
#endif
OZONE_ENTRIES_ICONS_TEXTURE_WIFI,
OZONE_ENTRIES_ICONS_TEXTURE_CORE_OPTIONS,
OZONE_ENTRIES_ICONS_TEXTURE_INPUT_REMAPPING_OPTIONS,

View File

@ -123,7 +123,9 @@ enum
STRIPES_TEXTURE_LOADSTATE,
STRIPES_TEXTURE_UNDO,
STRIPES_TEXTURE_CORE_INFO,
#if 0
STRIPES_TEXTURE_BLUETOOTH,
#endif
STRIPES_TEXTURE_WIFI,
STRIPES_TEXTURE_CORE_OPTIONS,
STRIPES_TEXTURE_INPUT_REMAPPING_OPTIONS,
@ -2281,8 +2283,10 @@ static uintptr_t stripes_icon_get_id(stripes_handle_t *stripes,
return stripes->textures.list[STRIPES_TEXTURE_SETTING];
case MENU_INFO_MESSAGE:
return stripes->textures.list[STRIPES_TEXTURE_CORE_INFO];
#if 0
case MENU_BLUETOOTH:
return stripes->textures.list[STRIPES_TEXTURE_BLUETOOTH];
#endif
case MENU_WIFI:
return stripes->textures.list[STRIPES_TEXTURE_WIFI];
#ifdef HAVE_NETWORKING
@ -3623,8 +3627,10 @@ static const char *stripes_texture_path(unsigned id)
return "undo.png";
case STRIPES_TEXTURE_CORE_INFO:
return "core-infos.png";
#if 0
case STRIPES_TEXTURE_BLUETOOTH:
return "bluetooth.png";
#endif
case STRIPES_TEXTURE_WIFI:
return "wifi.png";
case STRIPES_TEXTURE_CORE_OPTIONS:

View File

@ -131,7 +131,9 @@ enum
XMB_TEXTURE_LOADSTATE,
XMB_TEXTURE_UNDO,
XMB_TEXTURE_CORE_INFO,
#if 0
XMB_TEXTURE_BLUETOOTH,
#endif
XMB_TEXTURE_WIFI,
XMB_TEXTURE_CORE_OPTIONS,
XMB_TEXTURE_INPUT_REMAPPING_OPTIONS,
@ -2812,8 +2814,10 @@ static uintptr_t xmb_icon_get_id(xmb_handle_t *xmb,
return xmb->textures.list[XMB_TEXTURE_SETTING];
case MENU_INFO_MESSAGE:
return xmb->textures.list[XMB_TEXTURE_CORE_INFO];
#if 0
case MENU_BLUETOOTH:
return xmb->textures.list[XMB_TEXTURE_BLUETOOTH];
#endif
case MENU_WIFI:
return xmb->textures.list[XMB_TEXTURE_WIFI];
#ifdef HAVE_NETWORKING
@ -5632,8 +5636,10 @@ static const char *xmb_texture_path(unsigned id)
return "undo.png";
case XMB_TEXTURE_CORE_INFO:
return "core-infos.png";
#if 0
case XMB_TEXTURE_BLUETOOTH:
return "bluetooth.png";
#endif
case XMB_TEXTURE_WIFI:
return "wifi.png";
case XMB_TEXTURE_CORE_OPTIONS: