This commit is contained in:
Ken Van Hoeylandt 2025-08-21 22:32:06 +02:00
parent d57b111f0e
commit fa1418d37b
2 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,7 @@ bool loadBootProperties(BootProperties& properties) {
})) { })) {
TT_LOG_E(TAG, "Failed to load %s", PROPERTIES_FILE); TT_LOG_E(TAG, "Failed to load %s", PROPERTIES_FILE);
return false; return false;
}; }
return !properties.launcherAppId.empty(); return !properties.launcherAppId.empty();
} }

View File

@ -2,6 +2,7 @@
#include <cstring> #include <cstring>
#include <fstream> #include <fstream>
#include <unistd.h>
namespace tt::file { namespace tt::file {