Commit c4ccc7f2 authored by nadro's avatar nadro

- Fixed issue with textures in Software Driver.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5200 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 48bf4009
......@@ -247,7 +247,7 @@ bool CSoftwareDriver::endScene()
ITexture* CSoftwareDriver::createDeviceDependentTexture(const io::path& name, IImage* image)
{
CSoftwareTexture2* texture = new CSoftwareTexture2(image, name, false);
CSoftwareTexture* texture = new CSoftwareTexture(image, name, false);
return texture;
}
......
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