From 9de1d80ca1917471a78cdb74adbbf7c55dc8cd50 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Wed, 15 Sep 2021 17:35:50 -0500 Subject: [PATCH] Fix non-auxspi bytes progress --- arm9/source/dumpOperations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/dumpOperations.cpp b/arm9/source/dumpOperations.cpp index be6b2d7..1cdafc5 100644 --- a/arm9/source/dumpOperations.cpp +++ b/arm9/source/dumpOperations.cpp @@ -298,7 +298,7 @@ void ndsCardSaveRestore(const char *filename) { font->print(-1, 5, false, "]"); for(unsigned int i = 0; i < 32; i++) { font->print((i * (SCREEN_COLS - 2) / 32) + 1, 5, false, "="); - font->printf(0, 6, false, Alignment::left, Palette::white, "%d/%d Bytes", i * LEN, length); + font->printf(0, 6, false, Alignment::left, Palette::white, "%d/%d Bytes", written, size); font->update(false); fread(buffer, 1, blocks, in);