From d2220917e0f9bbbb12ec07876c07d0c259dc1dae Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 8 Jun 2014 13:03:45 +0200 Subject: [PATCH] Fixed typo in log message. --- src/video/nacl/SDL_naclevents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/nacl/SDL_naclevents.c b/src/video/nacl/SDL_naclevents.c index 424535d90e942..5a4449a49429d 100644 --- a/src/video/nacl/SDL_naclevents.c +++ b/src/video/nacl/SDL_naclevents.c @@ -312,7 +312,7 @@ SDL_NACL_translate_keycode(int keycode) scancode = NACL_Keycodes[keycode]; } if (scancode == SDL_SCANCODE_UNKNOWN) { - SDL_Log("The key you just pressed is not recognized by SDL. To help get this fixed, please report this to the SDL mailing list EVDEV KeyCode %d \n", keycode); + SDL_Log("The key you just pressed is not recognized by SDL. To help get this fixed, please report this to the SDL mailing list NACL KeyCode %d \n", keycode); } return scancode; }