From 3fb90e8197bf5c06f4bfb516a721bcb9603a71c1 Mon Sep 17 00:00:00 2001 From: Alex Taber Date: Thu, 24 Dec 2020 19:03:47 -0500 Subject: [PATCH] Remove unused variables --- source/loading.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/loading.c b/source/loading.c index 3c4baf02..ce04056a 100644 --- a/source/loading.c +++ b/source/loading.c @@ -185,13 +185,13 @@ Result load_entries(const char * loading_path, Entry_List_s * list) if (!strcmp(dir_entry.shortExt, "ZIP")) { - u32 size = zip_file_to_buf("info.smdh", path, &buf); + zip_file_to_buf("info.smdh", path, &buf); } else { const ssize_t len = strulen(path, 0x106); struacat(path, "/info.smdh"); - u32 size = file_to_buf(fsMakePath(PATH_UTF16, path), ArchiveSD, &buf); + file_to_buf(fsMakePath(PATH_UTF16, path), ArchiveSD, &buf); memset(&path[len], 0, (0x106 - len) * sizeof(u16)); }