@@ -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;
}