mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-06-19 03:05:43 -04:00

* Fix cart info if ejected not in drive menu * Fix a couple ramdrive issues - Unmount ramdrive if Slot-2 RAM is ejected - Fix potentially reading from the wrong location if numSectors > 1 and crosses between locations - free ramdLoc on regular DS too - Use calloc to 0 initialize, I saw it mess up occasionally on DSi too * Update time in the Vblank handler
16 lines
239 B
C++
16 lines
239 B
C++
#ifndef DRIVE_MENU_H
|
|
#define DRIVE_MENU_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
extern bool flashcardMountSkipped;
|
|
extern char romTitle[2][13];
|
|
extern u32 romSize[2], romSizeTrimmed;
|
|
|
|
extern void driveMenu (void);
|
|
|
|
|
|
|
|
#endif //DRIVE_MENU_H
|