mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-03 13:03:22 +00:00
Fixes typo on extension check for squashfs
Accidentally deleted the period on this
This commit is contained in:
parent
52426ae9f3
commit
8274058895
@ -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());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user