mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-26 22:02:08 +00:00
13 lines
272 B
C
13 lines
272 B
C
|
#include "utils.h"
|
||
|
#include "../common/common.h"
|
||
|
#include "../gfx/menu.h"
|
||
|
#include "../../storage/emummc.h"
|
||
|
|
||
|
int utils_mmcMenu(){
|
||
|
int res;
|
||
|
|
||
|
if (emu_cfg.enabled)
|
||
|
return menu_make(utils_mmcChoice, 3, "-- Choose MMC --");
|
||
|
else
|
||
|
return SYSMMC;
|
||
|
}
|