Bug 1073036. Fix an assertion string that I forgot about.

--HG--
extra : rebase_source : 9c52d35673e7a28d2c982a070e28b18792cc1a98
This commit is contained in:
Jeff Muizelaar 2014-11-18 10:33:36 -05:00
parent de242a3dba
commit 5d3083acd5

View File

@ -548,7 +548,7 @@ ShaderProgramOGL::GetProgram()
NS_WARNING("Shader could not be initialised");
}
}
MOZ_ASSERT(HasInitialized(), "Attempting to activate a program that's not in use!");
MOZ_ASSERT(HasInitialized(), "Attempting to get a program that's not been initialized!");
return mProgram;
}