mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-12 15:06:42 +00:00
show sd error message on mount fail
This commit is contained in:
parent
853cf4f5cf
commit
d8f0c714b6
1 changed files with 5 additions and 1 deletions
|
@ -124,7 +124,11 @@ void RebootToHekate(){
|
||||||
}
|
}
|
||||||
|
|
||||||
void MountOrUnmountSD(){
|
void MountOrUnmountSD(){
|
||||||
(sd_mounted) ? sd_unmount() : sd_mount();
|
gfx_clearscreen();
|
||||||
|
if (sd_mounted)
|
||||||
|
sd_unmount();
|
||||||
|
else if (!sd_mount())
|
||||||
|
hidWait();
|
||||||
}
|
}
|
||||||
|
|
||||||
menuPaths mainMenuPaths[] = {
|
menuPaths mainMenuPaths[] = {
|
||||||
|
|
Loading…
Reference in a new issue