We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf5d53 commit 1d7e645Copy full SHA for 1d7e645
quickmenu/arm9/source/graphics/graphics.cpp
@@ -563,7 +563,7 @@ auto getMenuEntryTexture(MenuEntry entry) {
563
return &dlp_icons.images[0];
564
case MenuEntry::GBA:
565
{
566
- bool hasGbaCart = sys().isRegularDS() && (((u8*)GBAROM)[0xB2] == 0x96);
+ bool hasGbaCart = sys().isRegularDS() && ((io_dldi_data->ioInterface.features & FEATURE_SLOT_GBA) || (((u8*)GBAROM)[0xB2] == 0x96));
567
if(hasGbaCart || sdFound()) {
568
if(initialTouchedPosition == MenuEntry::GBA) {
569
if(currentTouchedPosition != MenuEntry::GBA)
0 commit comments