Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[BugFix] OpenPlugins wrong plugin lang id

Failing to use ID2P caused the lang id to be off by VIRT_PTR

Change-Id: Ibbabaae6c1fe130af4053ef3ebe2b1aa69530466

authored by

William Wilgus and committed by
William Wilgus
10923de8 dbebbcfe

+2 -2
+2 -2
apps/root_menu.c
··· 795 795 { 796 796 if(op_entry->lang_id == LANG_OPEN_PLUGIN) 797 797 { 798 - if (key == (char*)LANG_SHORTCUTS) 798 + if (key == (char*)ID2P(LANG_SHORTCUTS)) 799 799 { 800 800 op_entry->lang_id = LANG_SHORTCUTS; 801 801 } 802 802 else /* Bugfix ensure proper key */ 803 803 { 804 - key = (char*)LANG_OPEN_PLUGIN; 804 + key = ID2P(LANG_OPEN_PLUGIN); 805 805 } 806 806 } 807 807 continue;