Fixes typo on extension check for squashfs

Accidentally deleted the period on this
This commit is contained in:
Ryan Houdek 2021-06-15 23:03:46 -07:00
parent 52426ae9f3
commit 8274058895

View File

@ -111,7 +111,7 @@ namespace {
}
else if (it.is_regular_file()) {
// If it is a regular file then we need to check if it is a valid archive
if (it.path().extension() == "sqsh" &&
if (it.path().extension() == ".sqsh" &&
FEX::FormatCheck::IsSquashFS(it.path().string())) {
NamedRootFS.emplace_back(it.path().filename());
}