Fixed uninitialized value.

This commit is contained in:
Camilla Berglund 2010-10-30 22:58:54 +02:00
parent 53578d7d01
commit c71ae4cc42

View File

@ -483,14 +483,14 @@ int _glfwPlatformGetVideoModes(GLFWvidmode* list, int maxcount)
void _glfwPlatformGetDesktopMode(GLFWvidmode* mode) void _glfwPlatformGetDesktopMode(GLFWvidmode* mode)
{ {
int bpp, screen; int bpp;
#if defined(_GLFW_HAS_XF86VIDMODE) #if defined(_GLFW_HAS_XF86VIDMODE)
XF86VidModeModeInfo** modelist; XF86VidModeModeInfo** modelist;
int modecount; int modecount;
#endif /*_GLFW_HAS_XF86VIDMODE*/ #endif /*_GLFW_HAS_XF86VIDMODE*/
// Get display depth // Get display depth
bpp = DefaultDepth(_glfwLibrary.X11.display, screen); bpp = DefaultDepth(_glfwLibrary.X11.display, _glfwLibrary.X11.screen);
// Convert BPP to RGB bits // Convert BPP to RGB bits
_glfwSplitBPP(bpp, &mode->redBits, &mode->greenBits, &mode->blueBits); _glfwSplitBPP(bpp, &mode->redBits, &mode->greenBits, &mode->blueBits);