!isSdCardEnabled

only:uaefi
This commit is contained in:
rusEFI LLC 2024-09-19 19:34:58 -04:00
parent e5a1806b02
commit c1ee210f58
1 changed files with 1 additions and 1 deletions

View File

@ -634,7 +634,7 @@ static bool isSdCardEnabled() {
} }
void initMmcCard() { void initMmcCard() {
if (isSdCardEnabled()) { if (!isSdCardEnabled()) {
// do not even bother starting the thread if SD card is not enabled & configured on start-up // do not even bother starting the thread if SD card is not enabled & configured on start-up
return; return;
} }