Formatting.

This commit is contained in:
Camilla Berglund 2010-09-20 01:38:06 +02:00
parent bc7a8d48da
commit bdc5a44008
1 changed files with 1 additions and 1 deletions

2
src/window.c Normal file → Executable file
View File

@ -143,7 +143,7 @@ void _glfwInputKey(_GLFWwindow* window, int key, int action)
}
// Call user callback function
if (window->keyCallback && (window->keyRepeat || !keyrepeat) )
if (window->keyCallback && (window->keyRepeat || !keyrepeat))
window->keyCallback(window, key, action);
}