mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
don't create file when trying to open for read
This commit is contained in:
parent
9d574b2de0
commit
a814bfb00b
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ File DataStore::openRead(const char* filename) {
|
||||||
#elif defined(RP2040_PLATFORM)
|
#elif defined(RP2040_PLATFORM)
|
||||||
return _fs->open(filename, "r");
|
return _fs->open(filename, "r");
|
||||||
#else
|
#else
|
||||||
return _fs->open(filename, "r", true);
|
return _fs->open(filename, "r", false);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue