From 877cf9418a6efd97e86ca3f2656bc3ab43ce3c89 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 24 Nov 2021 23:20:50 +0000 Subject: [PATCH] Fix headless build --- src/override/RemoteNanoVG.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/override/RemoteNanoVG.cpp b/src/override/RemoteNanoVG.cpp index 15f639d..05eb434 100644 --- a/src/override/RemoteNanoVG.cpp +++ b/src/override/RemoteNanoVG.cpp @@ -55,6 +55,7 @@ GLFWAPI const char* glfwGetClipboardString(GLFWwindow* window) { return nullptr; GLFWAPI void glfwSetClipboardString(GLFWwindow* window, const char*) {} GLFWAPI const char* glfwGetKeyName(int key, int scancode) { return nullptr; } GLFWAPI int glfwGetKeyScancode(int key) { return 0; } +GLFWAPI double glfwGetTime(void) { return 0.0; } }