mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
* 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
18 lines
229 B
C
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
|