From f3b1cfd0de65682cdbc1775258eec6dc7ea1d280 Mon Sep 17 00:00:00 2001 From: groogy Date: Fri, 28 Jan 2011 21:59:31 +0000 Subject: [PATCH] Forgot the constant SFML::Key::W git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1782 4e206d99-4929-0410-ac5d-dfc041789085 --- bindings/ruby/sfml-window/window/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/ruby/sfml-window/window/main.cpp b/bindings/ruby/sfml-window/window/main.cpp index 3f689577..81a880bd 100644 --- a/bindings/ruby/sfml-window/window/main.cpp +++ b/bindings/ruby/sfml-window/window/main.cpp @@ -83,6 +83,7 @@ static void CreateKeyEnum( void ) rb_define_const( globalKeyNamespace, "S", INT2FIX( sf::Key::S ) ); rb_define_const( globalKeyNamespace, "T", INT2FIX( sf::Key::T ) ); rb_define_const( globalKeyNamespace, "U", INT2FIX( sf::Key::U ) ); + rb_define_const( globalKeyNamespace, "W", INT2FIX( sf::Key::W ) ); rb_define_const( globalKeyNamespace, "V", INT2FIX( sf::Key::V ) ); rb_define_const( globalKeyNamespace, "X", INT2FIX( sf::Key::X ) ); rb_define_const( globalKeyNamespace, "Y", INT2FIX( sf::Key::Y ) );