pmd-sky/src/main_02008210.c
AnonymousRandomPerson 00acb2eded Decomped FileRom_HandleOpen
Decomped by @chordtoll
2024-11-22 22:47:03 -05:00

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);
}
}