AP_Filesystem: use @ROMFS

This commit is contained in:
Andrew Tridgell 2020-03-21 12:13:30 +11:00
parent 9f2c689ec8
commit 10c709a5a1
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ static AP_Filesystem_ROMFS fs_romfs;
const AP_Filesystem::Backend AP_Filesystem::backends[] = { const AP_Filesystem::Backend AP_Filesystem::backends[] = {
{ nullptr, fs_local }, { nullptr, fs_local },
#ifdef HAL_HAVE_AP_ROMFS_EMBEDDED_H #ifdef HAL_HAVE_AP_ROMFS_EMBEDDED_H
{ ":ROMFS/", fs_romfs }, { "@ROMFS/", fs_romfs },
#endif #endif
}; };