From 4aca6e5fcfcbf36da51281e8f6363829d1efd11a Mon Sep 17 00:00:00 2001 From: "Such Meme, Many Skill" Date: Sat, 2 May 2020 02:05:37 +0200 Subject: [PATCH] Edit some more btn_waits() out --- source/tegraexplorer/emmc/emmcmenu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/tegraexplorer/emmc/emmcmenu.c b/source/tegraexplorer/emmc/emmcmenu.c index 12d91ce..26a573d 100644 --- a/source/tegraexplorer/emmc/emmcmenu.c +++ b/source/tegraexplorer/emmc/emmcmenu.c @@ -3,7 +3,7 @@ #include "../../mem/heap.h" #include "../../utils/types.h" #include "../../libs/fatfs/ff.h" -#include "../../utils/btn.h" +#include "../../hid/hid.h" #include "../../gfx/gfx.h" #include "../../utils/util.h" #include "../../storage/nx_emmc.h" @@ -122,7 +122,7 @@ int handleEntries(short mmcType, menu_entry part){ if (!res){ gfx_printf("\nDone!"); - btn_wait(); + hidWait(); } } @@ -154,14 +154,14 @@ int makeMmcMenu(short mmcType){ } gfx_printf("\nDone!"); - btn_wait(); + hidWait(); break; case 2: if (!(clipboardhelper & ISDIR) && (clipboardhelper & OPERATIONCOPY)){ gfx_clearscreen(); if (!mmcFlashFile(clipboard, mmcType)){ gfx_printf("\nDone!"); - btn_wait(); + hidWait(); } clipboardhelper = 0; }