zzogl-pg: Fix a silly typo. Issue 766.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3322 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-06-27 03:36:39 +00:00
parent b3cd458c78
commit 621fb5bd24
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ static __forceinline void Texture2D(GLint iFormat, GLenum format, GLenum type, c
static __forceinline void Texture3D(GLint iFormat, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const GLvoid* pixels)
{
glTexImage3D(GL_TEXTURE_2D, 0, iFormat, width, height, depth, 0, format, type, pixels);
glTexImage3D(GL_TEXTURE_3D, 0, iFormat, width, height, depth, 0, format, type, pixels);
}
static __forceinline void TextureRect(GLint iFormat, GLint width, GLint height, GLenum format, GLenum type, const GLvoid* pixels)