diff --git a/CHANGELOG.md b/CHANGELOG.md index 81501a4..19c916f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ New features will increment the minor version. Breaking changes (**except for savestates**) will increment the major version; a design goal is to avoid a 2.x release for as long as possible. +## [1.1.7] - 2024-08-20 + +### Fixed + +- Fixed a build error on iOS on the libretro infrastructure. + ## [1.1.6] - 2024-08-20 ### Changed diff --git a/cmake/FetchDependencies.cmake b/cmake/FetchDependencies.cmake index f665677..7c1f691 100644 --- a/cmake/FetchDependencies.cmake +++ b/cmake/FetchDependencies.cmake @@ -38,7 +38,7 @@ function(fetch_dependency name default_url default_tag) endfunction() fetch_dependency(melonDS "https://github.com/melonDS-emu/melonDS" "824eb37") -fetch_dependency(libretro-common "https://github.com/libretro/libretro-common" "70ed90c") +fetch_dependency(libretro-common "https://github.com/JesseTG/libretro-common" "8e2b884") fetch_dependency("embed-binaries" "https://github.com/andoalon/embed-binaries.git" "21f28ca") fetch_dependency(glm "https://github.com/g-truc/glm" "33b4a62") fetch_dependency(libslirp "https://github.com/JesseTG/libslirp-mirror" "e61dbd4")