mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-23 01:57:23 -05:00
14 lines
341 B
C
14 lines
341 B
C
#include "file_rom.h"
|
|
|
|
void CardPullOutWithStatus(u32 status);
|
|
u32 sub_0207F6C4(struct file_stream* file, const u8* filepath);
|
|
|
|
void FileRom_HandleOpen(struct file_stream* file, const char* filepath) {
|
|
while (TRUE) {
|
|
if (sub_0207F6C4(file,filepath) != 0) {
|
|
return;
|
|
}
|
|
CardPullOutWithStatus(1);
|
|
}
|
|
}
|