From f79fec5c56b7ff3483f0cb47f9f608c546d23cb0 Mon Sep 17 00:00:00 2001 From: groogy Date: Mon, 15 Nov 2010 08:33:41 +0000 Subject: [PATCH] Forgot to load and initialize SFML::VideoMode and SFML::Window git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1644 4e206d99-4929-0410-ac5d-dfc041789085 --- bindings/ruby/sfml-window/window/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/ruby/sfml-window/window/main.cpp b/bindings/ruby/sfml-window/window/main.cpp index 174b8c2d..6561e73f 100644 --- a/bindings/ruby/sfml-window/window/main.cpp +++ b/bindings/ruby/sfml-window/window/main.cpp @@ -25,6 +25,8 @@ #include "ContextSettings.hpp" #include "Event.hpp" #include "Input.hpp" +#include "VideoMode.hpp" +#include "Window.hpp" #include @@ -140,4 +142,6 @@ void Init_window( void ) Init_ContextSettings(); Init_Event(); Init_Input(); + Init_VideoMode(); + Init_Window(); }