From cf7c367b364b0ea21e60aa337d31a191cf17cdc7 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Tue, 4 Feb 2020 18:28:46 -0700 Subject: [PATCH] Fix top screen being cleared when pasting a folder/file --- arm9/source/file_browse.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arm9/source/file_browse.cpp b/arm9/source/file_browse.cpp index ed4871d..a55bc47 100644 --- a/arm9/source/file_browse.cpp +++ b/arm9/source/file_browse.cpp @@ -328,9 +328,8 @@ bool fileBrowse_paste(char destPath[256]) { int optionOffset = 0; int maxCursors = -1; - consoleClear(); - consoleSelect(&bottomConsole); + consoleClear(); printf ("\x1B[47m"); // Print foreground white color printf(clipboardFolder ? "Paste folder here?" : "Paste file here?"); printf("\n\n");