1
0
Fork 0
forked from len0rd/rockbox

debug_menu: Fix compile error from previous commit

Change-Id: If01ba31a34be3e277a98adb93861aa2a19d8829d
This commit is contained in:
James Buren 2021-03-22 06:30:06 -05:00
parent 3f88512b3b
commit 3a254a92c7

View file

@ -1428,13 +1428,13 @@ static int disk_callback(int btn, struct gui_synclist *lists)
'0' + (i & 7));
}
#endif /* HAVE_ATA_DMA */
i = identity_info[0] & (1 << 15);
i = identify_info[0] & (1 << 15);
simplelist_addline(
"ATA device: %s", i ? "yes" : "no");
i = identity_info[0] & (1 << 6);
i = identify_info[0] & (1 << 6);
simplelist_addline(
"Fixed device: %s", i ? "yes" : "no");
i = identity_info[0] & (1 << 7);
i = identify_info[0] & (1 << 7);
simplelist_addline(
"Removeable media: %s", i ? "yes" : "no");
return btn;