Update melonDS

This commit is contained in:
Jesse Talavera-Greenberg 2023-12-13 22:06:53 -05:00
parent e9ec98d560
commit 2a5a94a05a
3 changed files with 4 additions and 3 deletions

View File

@ -9,7 +9,7 @@ and this project roughly adheres to [Semantic Versioning](https://semver.org/spe
### Changed
- Updated melonDS to commit 082310d.
- Updated melonDS to commit 72bd7c4.
- Updated libretro-common to commit fce57fd.
### Fixed

View File

@ -37,7 +37,7 @@ function(fetch_dependency name default_url default_tag)
FetchContent_GetProperties(${name})
endfunction()
fetch_dependency("melonDS" "https://github.com/melonDS-emu/melonDS" "082310d")
fetch_dependency("melonDS" "https://github.com/JesseTG/melonDS" "72bd7c4")
fetch_dependency("libretro-common" "https://github.com/libretro/libretro-common.git" "fce57fd")
fetch_dependency("embed-binaries" "https://github.com/andoalon/embed-binaries.git" "21f28ca")
fetch_dependency(glm "https://github.com/g-truc/glm.git" "47585fd")

View File

@ -386,7 +386,8 @@ static unique_ptr<melonDS::NDSCart::CartCommon> MelonDsDs::LoadNdsCart(const Cor
melonDS::NDSCart::NDSCartArgs sdargs = {
.SDCard = config.DldiSdCardArgs(),
.SRAM = nullopt, // SRAM is loaded separately by retro_get_memory
.SRAM = nullptr, // SRAM is loaded separately by retro_get_memory
.SRAMLength = 0,
};
std::unique_ptr<melonDS::NDSCart::CartCommon> cart;