From 971a2a394eb5ab93f6d95eb1544e5cd7bada4fe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Jos=C3=A9=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Fri, 16 Oct 2020 20:29:17 +0200 Subject: [PATCH] [VITA] Fix VitaGL symbol changes --- deps/vitaGL/source/vitaGL.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/vitaGL/source/vitaGL.c b/deps/vitaGL/source/vitaGL.c index b4aba3faad..82164a83d9 100644 --- a/deps/vitaGL/source/vitaGL.c +++ b/deps/vitaGL/source/vitaGL.c @@ -874,7 +874,7 @@ void glBufferData(GLenum target, GLsizei size, const GLvoid *data, GLenum usage) // Free buffer if already existing. if (gpu_buffers[idx].ptr != NULL) - mempool_free(gpu_buffers[idx].ptr, type); + vgl_mem_free(gpu_buffers[idx].ptr, type); gpu_buffers[idx].ptr = gpu_alloc_mapped(size, &type); gpu_buffers[idx].size = size;