From 46a56ea7420763baf5d5a8007a81fccb3e1e3403 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 24 Jun 2014 13:04:40 +0200 Subject: [PATCH] Clarified charmods in events test. --- tests/events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/events.c b/tests/events.c index 2deb9a6b..9dc1f190 100644 --- a/tests/events.c +++ b/tests/events.c @@ -392,7 +392,7 @@ static void char_callback(GLFWwindow* window, unsigned int codepoint) static void char_mods_callback(GLFWwindow* window, unsigned int codepoint, int mods) { Slot* slot = glfwGetWindowUserPointer(window); - printf("%08x to %i at %0.3f: Character 0x%08x (%s) (with%s) input\n", + printf("%08x to %i at %0.3f: Character with modifiers 0x%08x (%s) (with%s) input\n", counter++, slot->number, glfwGetTime(), codepoint, get_character_string(codepoint), get_mods_name(mods));