mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 15:50:00 -06:00
make it not shitty, I guess? still not gonna do much
This commit is contained in:
@ -567,8 +567,8 @@ void debug_listfiles(const char* path)
|
||||
for (;;)
|
||||
{
|
||||
res = f_readdir(&dir, &info);
|
||||
if (res != FR_OK) return;
|
||||
if (!info.fname[0]) return;
|
||||
if (res != FR_OK) break;
|
||||
if (!info.fname[0]) break;
|
||||
|
||||
char fullname[512];
|
||||
sprintf(fullname, "%s/%s", path, info.fname);
|
||||
|
Reference in New Issue
Block a user