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

This commit is contained in:
Jeff Muizelaar
2014-11-18 10:33:36 -05:00
parent 9ac51b20fd
commit 90fb403980

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