mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
Edit some more btn_waits() out
This commit is contained in:
parent
aa6d522c16
commit
4aca6e5fcf
1 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
#include "../../mem/heap.h"
|
#include "../../mem/heap.h"
|
||||||
#include "../../utils/types.h"
|
#include "../../utils/types.h"
|
||||||
#include "../../libs/fatfs/ff.h"
|
#include "../../libs/fatfs/ff.h"
|
||||||
#include "../../utils/btn.h"
|
#include "../../hid/hid.h"
|
||||||
#include "../../gfx/gfx.h"
|
#include "../../gfx/gfx.h"
|
||||||
#include "../../utils/util.h"
|
#include "../../utils/util.h"
|
||||||
#include "../../storage/nx_emmc.h"
|
#include "../../storage/nx_emmc.h"
|
||||||
|
@ -122,7 +122,7 @@ int handleEntries(short mmcType, menu_entry part){
|
||||||
|
|
||||||
if (!res){
|
if (!res){
|
||||||
gfx_printf("\nDone!");
|
gfx_printf("\nDone!");
|
||||||
btn_wait();
|
hidWait();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,14 +154,14 @@ int makeMmcMenu(short mmcType){
|
||||||
}
|
}
|
||||||
|
|
||||||
gfx_printf("\nDone!");
|
gfx_printf("\nDone!");
|
||||||
btn_wait();
|
hidWait();
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
if (!(clipboardhelper & ISDIR) && (clipboardhelper & OPERATIONCOPY)){
|
if (!(clipboardhelper & ISDIR) && (clipboardhelper & OPERATIONCOPY)){
|
||||||
gfx_clearscreen();
|
gfx_clearscreen();
|
||||||
if (!mmcFlashFile(clipboard, mmcType)){
|
if (!mmcFlashFile(clipboard, mmcType)){
|
||||||
gfx_printf("\nDone!");
|
gfx_printf("\nDone!");
|
||||||
btn_wait();
|
hidWait();
|
||||||
}
|
}
|
||||||
clipboardhelper = 0;
|
clipboardhelper = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue