mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 09:01:46 +00:00
Merge pull request #5 from belkiss/master
Fixed typo in video mode size comparison.
This commit is contained in:
commit
bb7e7d1883
@ -153,7 +153,7 @@ static void test_modes(GLFWvidmode* modes, int count)
|
|||||||
|
|
||||||
glfwGetWindowSize(window, &width, &height);
|
glfwGetWindowSize(window, &width, &height);
|
||||||
|
|
||||||
if (width != modes[i].width || height != height)
|
if (width != modes[i].width || height != modes[i].height)
|
||||||
{
|
{
|
||||||
printf("*** Size mismatch: %ix%i instead of %ix%i\n",
|
printf("*** Size mismatch: %ix%i instead of %ix%i\n",
|
||||||
width, height,
|
width, height,
|
||||||
|
Loading…
Reference in New Issue
Block a user