Update archive.cpp

This commit is contained in:
redgl0w
2020-01-09 17:35:26 +01:00
committed by GitHub
parent 8149a1def1
commit 35791b1ed7

View File

@@ -118,7 +118,7 @@ size_t numberOfFiles() {
#else
bool fileAtIndex(size_t index, File &entry) {
entry.name = "App";
entry.name = "No apps installed ";
entry.data = NULL;
entry.dataLength = 0;
entry.isExecutable = true;
@@ -137,7 +137,7 @@ int indexFromName(const char *name) {
}
size_t numberOfFiles() {
return 1;
return 0;
}
#endif