Removed duplicate word from events test output.

This commit is contained in:
Camilla Berglund 2011-09-20 15:18:03 +02:00
parent 0597e388c9
commit e31042c0dc

View File

@ -180,9 +180,9 @@ static const char* get_action_name(int action)
switch (action)
{
case GLFW_PRESS:
return "was pressed";
return "pressed";
case GLFW_RELEASE:
return "was released";
return "released";
}
return "caused unknown action";