GodMode9i/arm9/source/imgio.h
Pk11 a9a29204ab
Improve unmounting and various other bug fixes (#137)
* Various improvements to drive unmounting drives

* Add mounting DSiWare saves

They're FAT12 images, but libfat doens't like them without a little tweak since they don't have the 'FAT' identifier text

* Don't try to send DSi SD card status on regular DS

Fixes X and Y buttons being unresponsive
2022-01-03 20:08:43 -07:00

18 lines
229 B
C

#pragma once
#include <nds.h>
#include <nds/disc_io.h>
#ifdef __cplusplus
extern "C" {
#endif
bool img_shutdown();
extern const DISC_INTERFACE io_img;
extern const DISC_INTERFACE io_dsiware_save;
#ifdef __cplusplus
}
#endif