From f49245e4ab5daf1316945c67a978fbd1375a17c2 Mon Sep 17 00:00:00 2001 From: "Such Meme, Many Skill" Date: Fri, 15 May 2020 16:20:52 +0200 Subject: [PATCH] Fix hidden copies messing with screen positions --- source/tegraexplorer/fs/fsactions.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/tegraexplorer/fs/fsactions.c b/source/tegraexplorer/fs/fsactions.c index 7062496..4cc3311 100644 --- a/source/tegraexplorer/fs/fsactions.c +++ b/source/tegraexplorer/fs/fsactions.c @@ -91,8 +91,10 @@ int fsact_copy(const char *locin, const char *locout, u8 options){ } } - RESETCOLOR; - gfx_con_setpos(x - 16, y); + if (toPrint){ + RESETCOLOR; + gfx_con_setpos(x - 16, y); + } f_close(&in); f_close(&out);