From e58f05619e1334af9ecf2470a1ab39e7282d2408 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Thu, 14 Aug 2025 09:15:22 -0400 Subject: [PATCH] Version v0.2.59 - Fixed all remaining PADS_DIR references and removed old USB scanning code --- otp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otp.c b/otp.c index 9e70a7f..9ec9598 100644 --- a/otp.c +++ b/otp.c @@ -3198,7 +3198,7 @@ void get_directory_display(const char* file_path, char* result, size_t result_si } // Current working directory - if (strcmp(dir_path, ".") == 0 || strcmp(dir_path, PADS_DIR) == 0) { + if (strcmp(dir_path, ".") == 0 || strcmp(dir_path, current_pads_dir) == 0) { strncpy(result, "pads", result_size - 1); result[result_size - 1] = '\0'; return;