From dbb3dfb7e7f8f2a61554f1a6c77f5cd1e587dc58 Mon Sep 17 00:00:00 2001 From: badlogic Date: Sun, 30 Jun 2024 21:07:30 +0200 Subject: [PATCH] [glfw] Fix VC compiler error --- spine-glfw/src/spine-glfw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-glfw/src/spine-glfw.cpp b/spine-glfw/src/spine-glfw.cpp index 97130b933..de8ca1031 100644 --- a/spine-glfw/src/spine-glfw.cpp +++ b/spine-glfw/src/spine-glfw.cpp @@ -200,7 +200,7 @@ void texture_dispose(texture_t texture) { } void matrix_ortho_projection(float *matrix, float width, float height) { - std::memset(matrix, 0, 16 * sizeof(float)); + memset(matrix, 0, 16 * sizeof(float)); float left = 0.0f; float right = width;