Simplified version string functions.

This commit is contained in:
Camilla Berglund
2015-06-01 20:50:10 +02:00
parent ef6dec17ba
commit b00a7d0619
5 changed files with 5 additions and 15 deletions

View File

@@ -620,7 +620,7 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_NUMBER " Wayland EGL"
return _GLFW_VERSION_NUMBER " Wayland EGL"
#if defined(_POSIX_TIMERS) && defined(_POSIX_MONOTONIC_CLOCK)
" clock_gettime"
#else
@@ -633,7 +633,5 @@ const char* _glfwPlatformGetVersionString(void)
" shared"
#endif
;
return version;
}