From aeed9dddac39fa9209d058fd77f3e0bc6b119b0c Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Thu, 6 Feb 2014 20:22:21 +0100 Subject: [PATCH] Fixed typo in Windows keyboard implementation Fixes #516 --- src/SFML/Window/Win32/InputImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/Window/Win32/InputImpl.cpp b/src/SFML/Window/Win32/InputImpl.cpp index 3001b2889..fafc68480 100644 --- a/src/SFML/Window/Win32/InputImpl.cpp +++ b/src/SFML/Window/Win32/InputImpl.cpp @@ -148,7 +148,7 @@ bool InputImpl::isKeyPressed(Keyboard::Key key) case Keyboard::F12: vkey = VK_F12; break; case Keyboard::F13: vkey = VK_F13; break; case Keyboard::F14: vkey = VK_F14; break; - case Keyboard::F15: vkey = VK_F16; break; + case Keyboard::F15: vkey = VK_F15; break; case Keyboard::Pause: vkey = VK_PAUSE; break; }