sdl2 2.5.1.0 → 2.5.2.0
raw patch · 3 files changed
+8/−2 lines, 3 files
Files
- ChangeLog.md +6/−0
- sdl2.cabal +1/−1
- src/SDL/Raw/Video.hs +1/−1
ChangeLog.md view
@@ -1,6 +1,12 @@ 2.5.2.0 ======= +* Correct SDL.Raw.Video.vkLoadLibrary to correctly call vkLoadLibraryFFI, rather+ than setClipboardTextFFI. See https://github.com/haskell-game/sdl2/pull/209.++2.5.1.0+=======+ * Support `linear-1.21`
sdl2.cabal view
@@ -1,5 +1,5 @@ name: sdl2-version: 2.5.1.0+version: 2.5.2.0 synopsis: Both high- and low-level bindings to the SDL library (version 2.0.6+). description: This package contains bindings to the SDL 2 library, in both high- and
src/SDL/Raw/Video.hs view
@@ -1152,7 +1152,7 @@ {-# INLINE setClipboardText #-} vkLoadLibrary :: MonadIO m => CString -> m CInt-vkLoadLibrary v1 = liftIO $ setClipboardTextFFI v1+vkLoadLibrary v1 = liftIO $ vkLoadLibraryFFI v1 {-# INLINE vkLoadLibrary #-} vkGetVkGetInstanceProcAddr :: MonadIO m => m (FunPtr VkGetInstanceProcAddrFunc)