瀏覽代碼

Reviewed warning

Ray 3 月之前
父節點
當前提交
3e336e4470
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/rlgl.h

+ 1 - 1
src/rlgl.h

@@ -2425,7 +2425,7 @@ void rlLoadExtensions(void *loader)
 
     // Get supported extensions list
     GLint numExt = 0;
-    const char **extList = (char **)RL_MALLOC(512*sizeof(const char *)); // Allocate 512 strings pointers (2 KB)
+    const char **extList = (const char **)RL_MALLOC(512*sizeof(const char *)); // Allocate 512 strings pointers (2 KB)
     const char *extensions = (const char *)glGetString(GL_EXTENSIONS);  // One big const string
 
     // NOTE: We have to duplicate string because glGetString() returns a const string