Version string fixes.

This commit is contained in:
Camilla Berglund
2013-02-14 13:13:07 +01:00
parent 92a71e07d3
commit 666181d923
3 changed files with 12 additions and 16 deletions
+4 -4
View File
@@ -133,15 +133,15 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_FULL
#if defined(_GLFW_BUILD_DLL)
" dynamic"
#endif
const char* version = _GLFW_VERSION_FULL " Cocoa"
#if defined(_GLFW_USE_CHDIR)
" chdir"
#endif
#if defined(_GLFW_USE_MENUBAR)
" menubar"
#endif
#if defined(_GLFW_BUILD_DLL)
" dynamic"
#endif
;