mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-21 12:01:53 +00:00
commit
a4aee891aa
@ -83,6 +83,7 @@ enum
|
||||
XMB_TEXTURE_FOLDER,
|
||||
XMB_TEXTURE_ZIP,
|
||||
XMB_TEXTURE_MUSIC,
|
||||
XMB_TEXTURE_IMAGE,
|
||||
XMB_TEXTURE_CORE,
|
||||
XMB_TEXTURE_RDB,
|
||||
XMB_TEXTURE_CURSOR,
|
||||
@ -1123,6 +1124,8 @@ static GLuint xmb_icon_get_id(xmb_handle_t *xmb,
|
||||
return xmb->textures.list[XMB_TEXTURE_ZIP].id;
|
||||
case MENU_FILE_MUSIC:
|
||||
return xmb->textures.list[XMB_TEXTURE_MUSIC].id;
|
||||
case MENU_FILE_IMAGEVIEWER:
|
||||
return xmb->textures.list[XMB_TEXTURE_IMAGE].id;
|
||||
case MENU_FILE_CORE:
|
||||
return xmb->textures.list[XMB_TEXTURE_CORE].id;
|
||||
case MENU_FILE_RDB:
|
||||
@ -1302,6 +1305,8 @@ static void xmb_draw_items(xmb_handle_t *xmb, gl_t *gl,
|
||||
break;
|
||||
case MENU_VALUE_MUSIC:
|
||||
break;
|
||||
case MENU_VALUE_IMAGE:
|
||||
break;
|
||||
case MENU_VALUE_ON:
|
||||
if (xmb->textures.list[XMB_TEXTURE_SWITCH_ON].id)
|
||||
texture_switch = xmb->textures.list[XMB_TEXTURE_SWITCH_ON].id;
|
||||
@ -2085,6 +2090,9 @@ static void xmb_context_reset_textures(xmb_handle_t *xmb, const char *iconpath)
|
||||
case XMB_TEXTURE_MUSIC:
|
||||
fill_pathname_join(path, iconpath, "music.png", sizeof(path));
|
||||
break;
|
||||
case XMB_TEXTURE_IMAGE:
|
||||
fill_pathname_join(path, iconpath, "image.png", sizeof(path));
|
||||
break;
|
||||
case XMB_TEXTURE_CORE:
|
||||
fill_pathname_join(path, iconpath, "core.png", sizeof(path));
|
||||
break;
|
||||
|
@ -480,6 +480,7 @@ extern "C" {
|
||||
#define MENU_VALUE_FALSE 0x0f6bcef0U
|
||||
#define MENU_VALUE_COMP 0x6a166ba5U
|
||||
#define MENU_VALUE_MUSIC 0xc4a73997U
|
||||
#define MENU_VALUE_IMAGE 0xbab7ebf9U
|
||||
#define MENU_VALUE_CORE 0x6a167f7fU
|
||||
#define MENU_VALUE_CURSOR 0x57bba8b4U
|
||||
#define MENU_VALUE_FILE 0x6a496536U
|
||||
|
Loading…
x
Reference in New Issue
Block a user