From 10f98821083292c3e6180a195606dbe5eae9b204 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Fri, 3 Apr 2020 00:00:13 +0100 Subject: [PATCH] Shut up a warning --- src/Backends/Platform/GLFW3.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Backends/Platform/GLFW3.cpp b/src/Backends/Platform/GLFW3.cpp index 27772ed0..2269fa04 100644 --- a/src/Backends/Platform/GLFW3.cpp +++ b/src/Backends/Platform/GLFW3.cpp @@ -252,6 +252,8 @@ void PlatformBackend_PostWindowCreation(void) BOOL PlatformBackend_GetBasePath(char *string_buffer) { + (void)string_buffer; + // GLFW3 doesn't seem to have a mechanism for this return FALSE; }