From 3f75917c8b864998d63e264fd419db707022a265 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Wed, 17 Dec 2025 04:37:36 +0200 Subject: [PATCH] hekate: remove precise free clusters calc in TUI --- bootloader/frontend/fe_info.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bootloader/frontend/fe_info.c b/bootloader/frontend/fe_info.c index 6b1a23a5..db1182af 100644 --- a/bootloader/frontend/fe_info.c +++ b/bootloader/frontend/fe_info.c @@ -1,6 +1,6 @@ /* * Copyright (c) 2018 naehrwert - * Copyright (c) 2018-2022 CTCaer + * Copyright (c) 2018-2025 CTCaer * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, @@ -234,7 +234,6 @@ void print_sdcard_info() if (!res) { gfx_puts("Acquiring FAT volume info...\n\n"); - f_getfree("", &sd_fs.free_clst, NULL); gfx_printf("%kFound %s volume:%k\n Free: %d MiB\n Cluster: %d KiB\n", TXT_CLR_CYAN_L, sd_fs.fs_type == FS_EXFAT ? "exFAT" : "FAT32", TXT_CLR_DEFAULT, sd_fs.free_clst * sd_fs.csize >> SECTORS_TO_MIB_COEFF, (sd_fs.csize > 1) ? (sd_fs.csize >> 1) : 512);