mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
TINYGL: Use realloc to increase the size of the vertex array
This commit is contained in:
@@ -45,4 +45,8 @@ void *gl_zalloc(int size) {
|
||||
return calloc(1, size);
|
||||
}
|
||||
|
||||
void *gl_realloc(void *p, int size) {
|
||||
return realloc(p, size);
|
||||
}
|
||||
|
||||
} // end of namespace TinyGL
|
||||
|
||||
Reference in New Issue
Block a user