mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
Bug fix
This commit is contained in:
parent
3e8dd2f5c2
commit
9d5e205a78
@ -325,7 +325,7 @@ void flashcardUnmount(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ramdriveMount(bool ram32MB) {
|
void ramdriveMount(bool ram32MB) {
|
||||||
if(REG_SCFG_EXT != 0) {
|
if(isDSiMode() || REG_SCFG_EXT != 0) {
|
||||||
ramdSectors = ram32MB ? 0xC800 : 0x4800;
|
ramdSectors = ram32MB ? 0xC800 : 0x4800;
|
||||||
|
|
||||||
fatMountSimple("ram", &io_ram_drive);
|
fatMountSimple("ram", &io_ram_drive);
|
||||||
|
|||||||
@ -18,10 +18,11 @@ u8* ramdLoc = (u8*)NULL;
|
|||||||
u8* ramdLocMep = (u8*)NULL;
|
u8* ramdLocMep = (u8*)NULL;
|
||||||
|
|
||||||
bool ramd_startup() {
|
bool ramd_startup() {
|
||||||
if(REG_SCFG_EXT != 0) {
|
if(isDSiMode() || REG_SCFG_EXT != 0) {
|
||||||
ramdLoc = (u8*)malloc(0x4800 * SECTOR_SIZE);
|
ramdLoc = (u8*)malloc(0x4800 * SECTOR_SIZE);
|
||||||
} else {
|
} else {
|
||||||
ramdLoc = (u8*)malloc(0x8 * SECTOR_SIZE);
|
ramdLoc = (u8*)malloc(0x8 * SECTOR_SIZE);
|
||||||
|
toncset(ramdLocMep, 0, (ramdSectors - 0x8) * SECTOR_SIZE); // Fill MEP with 00 to avoid displaying weird files
|
||||||
}
|
}
|
||||||
|
|
||||||
tonccpy(ramdLoc, bootSector, sizeof(bootSector));
|
tonccpy(ramdLoc, bootSector, sizeof(bootSector));
|
||||||
@ -36,7 +37,7 @@ bool ramd_is_inserted() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool ramd_read_sectors(sec_t sector, sec_t numSectors, void *buffer) {
|
bool ramd_read_sectors(sec_t sector, sec_t numSectors, void *buffer) {
|
||||||
if(REG_SCFG_EXT != 0) {
|
if(isDSiMode() || REG_SCFG_EXT != 0) {
|
||||||
if(sector < 0x4800) {
|
if(sector < 0x4800) {
|
||||||
tonccpy(buffer, ramdLoc + (sector << 9), numSectors << 9);
|
tonccpy(buffer, ramdLoc + (sector << 9), numSectors << 9);
|
||||||
return true;
|
return true;
|
||||||
@ -56,7 +57,7 @@ bool ramd_read_sectors(sec_t sector, sec_t numSectors, void *buffer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool ramd_write_sectors(sec_t sector, sec_t numSectors, const void *buffer) {
|
bool ramd_write_sectors(sec_t sector, sec_t numSectors, const void *buffer) {
|
||||||
if(REG_SCFG_EXT != 0) {
|
if(isDSiMode() || REG_SCFG_EXT != 0) {
|
||||||
if(sector < 0x4800) {
|
if(sector < 0x4800) {
|
||||||
tonccpy(ramdLoc + (sector << 9), buffer, numSectors << 9);
|
tonccpy(ramdLoc + (sector << 9), buffer, numSectors << 9);
|
||||||
return true;
|
return true;
|
||||||
@ -80,7 +81,7 @@ bool ramd_clear_status() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool ramd_shutdown() {
|
bool ramd_shutdown() {
|
||||||
if((REG_SCFG_EXT != 0) && ramdLoc) {
|
if((isDSiMode() || REG_SCFG_EXT != 0) && ramdLoc) {
|
||||||
free(ramdLoc);
|
free(ramdLoc);
|
||||||
ramdLoc = NULL;
|
ramdLoc = NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user