diff --git a/stepmania/src/RageDisplay_OGL.cpp b/stepmania/src/RageDisplay_OGL.cpp index 368119777c..7861603189 100644 --- a/stepmania/src/RageDisplay_OGL.cpp +++ b/stepmania/src/RageDisplay_OGL.cpp @@ -2226,6 +2226,9 @@ private: RageTextureLock *RageDisplay_OGL::CreateTextureLock() { + if( !GLExt.HasExtension("GL_ARB_pixel_buffer_object") ) + return NULL; + return new RageTextureLock_OGL; }