diff options
Diffstat (limited to 'src/graphicsmanager.cpp')
-rw-r--r-- | src/graphicsmanager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index 66502434d..2d2740023 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -337,10 +337,9 @@ void GraphicsManager::updateTextureFormat() || supportExtension("3DFX_texture_compression_FXT1")) { GLint num; - GLint *formats = nullptr; glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &num); logger->log("support %d compressed formats", num); - formats = new GLint[num > 10 ? num : 10]; + GLint *formats = new GLint[num > 10 ? num : 10]; glGetIntegerv(GL_COMPRESSED_TEXTURE_FORMATS, formats); for (int f = 0; f < num; f ++) { |