Minor tweaks

This commit is contained in:
Ray
2024-07-08 22:54:19 +02:00
parent 598b7f5210
commit 3abe728712
5 changed files with 7 additions and 7 deletions

View File

@ -1619,9 +1619,9 @@ int InitPlatform(void)
#if defined(__NetBSD__)
// Workaround for NetBSD
char* glfwPlatform = "X11";
char *glfwPlatform = "X11";
#else
char* glfwPlatform = "";
char *glfwPlatform = "";
switch (glfwGetPlatform())
{
case GLFW_PLATFORM_WIN32: glfwPlatform = "Win32"; break;