clang format fix

This commit is contained in:
georgemoralis 2024-02-28 15:20:32 +02:00
parent 8afc346f55
commit 6cd20f33bd
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ PSF::PSF() = default;
PSF::~PSF() = default;
bool PSF::open(const std::string& filepath) {
Common::FS::IOFile file(filepath,Common::FS::FileAccessMode::Read);
Common::FS::IOFile file(filepath, Common::FS::FileAccessMode::Read);
if (!file.IsOpen()) {
return false;
}