Skip to content

Commit

Permalink
Update menu_options.c
Browse files Browse the repository at this point in the history
  • Loading branch information
illusion0001 committed Jun 27, 2023
1 parent f39b07c commit 4ab165d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/menu_options.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void _draw_OptionsMenu(u8 alpha)
DrawTexture(&menu_textures[c], OPTION_ITEM_OFF - 29, y_off, 0, menu_textures[c].width, menu_textures[c].height, 0xFFFFFF00 | alpha);
break;
case APP_OPTION_CALL:
DrawTexture(orbisPadGetConf()->crossButtonOK ? &menu_textures[footer_ico_cross_png_index] : &menu_textures[footer_ico_circle_png_index], OPTION_ITEM_OFF - 29, y_off+2, 0, menu_textures[footer_ico_cross_png_index].width, menu_textures[footer_ico_cross_png_index].height, 0xFFFFFF00 | alpha);
DrawTexture(&menu_textures[orbisPadGetConf()->crossButtonOK ? footer_ico_cross_png_index : footer_ico_circle_png_index], OPTION_ITEM_OFF - 29, y_off+2, 0, menu_textures[footer_ico_cross_png_index].width/2, menu_textures[footer_ico_cross_png_index].height/2, 0xFFFFFF00 | alpha);
break;
case APP_OPTION_LIST:
SetFontAlign(FONT_ALIGN_CENTER);
Expand Down

0 comments on commit 4ab165d

Please sign in to comment.