diff --git a/lui.cabal b/lui.cabal
--- a/lui.cabal
+++ b/lui.cabal
@@ -1,5 +1,5 @@
 Name:                lui
-Version:             0.0.5
+Version:             0.0.6
 Cabal-Version:       >= 1.2
 Synopsis:            Purely FunctionaL User Interface
 Category:            graphics
@@ -27,7 +27,7 @@
 Library
   hs-Source-Dirs:      src
   Extensions:
-  Build-Depends:       base >= 4 && < 5, haskell98, containers, mtl, SDL, haskgame, MaybeT
+  Build-Depends:       base >= 4 && < 5, haskell98, containers, mtl, SDL, haskgame >= 0.0.6, MaybeT
   Exposed-Modules:     Graphics.UI.LUI.Accessor,
                        Graphics.UI.LUI.Image,
                        Graphics.UI.LUI.Run,
diff --git a/src/Graphics/UI/LUI/Run.hs b/src/Graphics/UI/LUI/Run.hs
--- a/src/Graphics/UI/LUI/Run.hs
+++ b/src/Graphics/UI/LUI/Run.hs
@@ -58,7 +58,7 @@
 
 mainLoop :: Widget model -> model -> IO model
 mainLoop widget initModel = do
-  display <- HaskGame.setVideoMode 800 600 16
+  display <- HaskGame.setVideoMode (Vector2 800 600) 16
   (`State.execStateT` initModel) . runMaybeT $ do
     forM_ (True:repeat False) $ \shouldDraw -> do
       events <- lift . lift $ HaskGame.getEvents
