aboutsummaryrefslogtreecommitdiff
path: root/text_file_functions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'text_file_functions.cpp')
-rw-r--r--text_file_functions.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/text_file_functions.cpp b/text_file_functions.cpp
index fc75eab7..e4bc2a10 100644
--- a/text_file_functions.cpp
+++ b/text_file_functions.cpp
@@ -152,8 +152,10 @@ QString AOApplication::read_design_ini(QString p_identifier, QString p_design_pa
design_ini.setFileName(p_design_path);
if (!design_ini.open(QIODevice::ReadOnly))
+ {
+ qDebug() << "Could not find design ini " + p_design_path;
return "";
-
+ }
QTextStream in(&design_ini);
QString result = "";