Unstubbed NAND writing functions

This commit is contained in:
d0k3 2016-03-02 21:14:31 +01:00
parent 75dff45fcb
commit adc153db3f

View File

@ -265,12 +265,12 @@ DRESULT disk_write (
} }
} }
/*if (type == TYPE_SYSNAND) { if (type == TYPE_SYSNAND) {
if (sdmmc_nand_writesectors(isector, count, buff)) if (sdmmc_nand_writesectors(isector, count, buff))
return RES_PARERR; return RES_PARERR;
} else if (sdmmc_sdcard_writesectors(emunand_base_sector + isector, count, buff)) { } else if (sdmmc_sdcard_writesectors(emunand_base_sector + isector, count, buff)) {
return RES_PARERR; return RES_PARERR;
}*/ }
// stubbed, better be safe! // stubbed, better be safe!
} }