mirror of
				https://github.com/glfw/glfw.git
				synced 2025-11-03 22:04:15 +00:00 
			
		
		
		
	Fixed missing return value.
This commit is contained in:
		
							parent
							
								
									24e789b38a
								
							
						
					
					
						commit
						d874f7ac98
					
				@ -78,7 +78,7 @@ GLFWAPI int glfwGetVideoModes(GLFWvidmode* list, int maxcount)
 | 
				
			|||||||
    if (!_glfwInitialized)
 | 
					    if (!_glfwInitialized)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        _glfwSetError(GLFW_NOT_INITIALIZED);
 | 
					        _glfwSetError(GLFW_NOT_INITIALIZED);
 | 
				
			||||||
        return;
 | 
					        return 0;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (maxcount <= 0 || list == NULL)
 | 
					    if (maxcount <= 0 || list == NULL)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user