From 8a2f2aba763c50d25ea0b6e037812c95d02ca8b7 Mon Sep 17 00:00:00 2001 From: Erica Nebula Date: Tue, 3 Jun 2025 20:45:49 -0500 Subject: [PATCH] games-emulation/rpcs3: Add submodule for VulkanMemoryAllocator VulkanMemoryAllocator used to be directly included in the rpcs3 repository but was recently converted to a submodule. See https://github.com/RPCS3/rpcs3/pull/17202 and discussion in https://github.com/RPCS3/rpcs3/pull/16923 which prompted the conversion. This commit just accommodates that change. Note: it only applies to the -9999 path here. Will introduce a new versioned ebuild in a separate commit, including updates to this file. Signed-off-by: Erica Nebula --- games-emulation/rpcs3/rpcs3-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-emulation/rpcs3/rpcs3-9999.ebuild b/games-emulation/rpcs3/rpcs3-9999.ebuild index 3b0817ab44..f3d4960c79 100644 --- a/games-emulation/rpcs3/rpcs3-9999.ebuild +++ b/games-emulation/rpcs3/rpcs3-9999.ebuild @@ -20,7 +20,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_SUBMODULES=( 'asmjit' '3rdparty/glslang' '3rdparty/miniupnp/miniupnp' '3rdparty/rtmidi/rtmidi' '3rdparty/wolfssl' '3rdparty/SoundTouch/soundtouch' '3rdparty/zstd/zstd' '3rdparty/stblib/stb' '3rdparty/OpenAL/openal-soft' - '3rdparty/fusion/fusion' + '3rdparty/fusion/fusion' '3rdparty/GPUOpen/VulkanMemoryAllocator' ) # Delete sources when ensuring yaml-cpp compiled with fexceptions EGIT_SUBMODULES+=( '3rdparty/yaml-cpp' )