mirror of
				https://github.com/glfw/glfw.git
				synced 2025-11-04 06:15:07 +00:00 
			
		
		
		
	Fix function return value when uninitialized
This commit is contained in:
		
							parent
							
								
									c47894a9a3
								
							
						
					
					
						commit
						f74ff2aa10
					
				@ -721,7 +721,7 @@ GLFWAPI const char* glfwGetKeyName(int key, int scancode)
 | 
			
		||||
 | 
			
		||||
GLFWAPI int glfwGetKeyScancode(int key)
 | 
			
		||||
{
 | 
			
		||||
    _GLFW_REQUIRE_INIT_OR_RETURN(-1);
 | 
			
		||||
    _GLFW_REQUIRE_INIT_OR_RETURN(0);
 | 
			
		||||
 | 
			
		||||
    if (key < GLFW_KEY_SPACE || key > GLFW_KEY_LAST)
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user