diff --git a/src/core/ncch/seed_db.cpp b/src/core/ncch/seed_db.cpp index aa7cb3d..1d68e83 100644 --- a/src/core/ncch/seed_db.cpp +++ b/src/core/ncch/seed_db.cpp @@ -14,14 +14,7 @@ namespace Core { bool SeedDB::Load(const std::string& path) { seeds.clear(); if (!FileUtil::Exists(path)) { - if (!FileUtil::CreateFullPath(path)) { - LOG_ERROR(Service_FS, "Failed to create seed database"); - return false; - } - if (!Save(path)) { - LOG_ERROR(Service_FS, "Failed to save seed database"); - return false; - } + LOG_WARNING(Service_FS, "Seed database does not exist"); return true; } FileUtil::IOFile file{path, "rb"};