From 93e6a02f0eaeada3b73c5a69fac31f898a4e96e4 Mon Sep 17 00:00:00 2001 From: dreamsourcelabTAI Date: Sat, 17 Jun 2023 12:31:31 +0800 Subject: [PATCH] Remove the assert for the firmware file dir is not exist --- DSView/pv/config/appconfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DSView/pv/config/appconfig.cpp b/DSView/pv/config/appconfig.cpp index f2791125..eaac3809 100644 --- a/DSView/pv/config/appconfig.cpp +++ b/DSView/pv/config/appconfig.cpp @@ -443,7 +443,7 @@ QString GetFirmwareDir() } dsv_err("%s%s", "Resource directory is not exists:", dir1.absolutePath().toUtf8().data()); - assert(false); + return dir1.absolutePath(); } QString GetUserDataDir()