Revert change

pull/4342/head
Kim Kulling 2022-01-18 21:34:18 +01:00 committed by GitHub
parent cff213d4dd
commit 037732c429
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -158,6 +158,9 @@ Q3BSPFileImporter::~Q3BSPFileImporter() {
// ------------------------------------------------------------------------------------------------
// Returns true if the loader can read this.
bool Q3BSPFileImporter::CanRead(const std::string &/*rFile*/, IOSystem * /*pIOHandler*/, bool /*checkSig*/) const {
if (!checkSig) {
return SimpleExtensionCheck(rFile, "pk3", "bsp");
}
return false;
}