Browse Source

Revert change.

Kim Kulling 3 years ago
parent
commit
1e80630d5d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/AssetLib/Raw/RawLoader.cpp

+ 1 - 1
code/AssetLib/Raw/RawLoader.cpp

@@ -85,7 +85,7 @@ RAWImporter::~RAWImporter() {
 // ------------------------------------------------------------------------------------------------
 // Returns whether the class can handle the format of the given file.
 bool RAWImporter::CanRead(const std::string & /*pFile*/, IOSystem * /*pIOHandler*/, bool /*checkSig*/) const {
-    return false;
+    return SimpleExtensionCheck(pFile, "raw");
 }
 
 // ------------------------------------------------------------------------------------------------