Commit 35ad0cce authored by hybrid's avatar hybrid

Fix typo.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2583 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 7c4b5a16
......@@ -151,8 +151,8 @@ CImageLoaderRGB::CImageLoaderRGB()
//! based on the file extensions listed here
bool CImageLoaderRGB::isALoadableFileExtension(const core::string<c16>& filename) const
{
return core::hasFileExtension( fileName, "rgb", "rgba", "sgi" ) ||
core::hasFileExtension( fileName, "int", "inta", "bw" );
return core::hasFileExtension( filename, "rgb", "rgba", "sgi" ) ||
core::hasFileExtension( filename, "int", "inta", "bw" );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment