Merge pull request #18900 from hrydgard/rcheevos-bump

Update rcheevos submodule
This commit is contained in:
Henrik Rydgård 2024-02-28 16:16:20 +07:00 committed by GitHub
commit 0159102a19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 5 additions and 16 deletions

2
.gitmodules vendored
View File

@ -46,7 +46,7 @@
url = https://github.com/google/cpu_features.git
[submodule "ext/rcheevos"]
path = ext/rcheevos
url = https://github.com/RetroAchievements/rcheevos.git
url = https://github.com/hrydgard/rcheevos.git
[submodule "ext/naett"]
path = ext/naett
url = https://github.com/erkkah/naett.git

View File

@ -72,7 +72,6 @@
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\runtime_progress.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\trigger.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\value.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\aes.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\cdreader.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\hash.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\md5.c" />

View File

@ -155,8 +155,5 @@
<ClCompile Include="..\..\ext\rcheevos\src\rc_util.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\..\ext\rcheevos\src\rhash\aes.c">
<Filter>rhash</Filter>
</ClCompile>
</ItemGroup>
</Project>

View File

@ -134,8 +134,7 @@ RCHEEVOS_FILES := \
${SRC}/ext/rcheevos/src/rcheevos/value.c \
${SRC}/ext/rcheevos/src/rhash/cdreader.c \
${SRC}/ext/rcheevos/src/rhash/hash.c \
${SRC}/ext/rcheevos/src/rhash/md5.c \
${SRC}/ext/rcheevos/src/rhash/aes.c
${SRC}/ext/rcheevos/src/rhash/md5.c
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
ADRENOTOOLS_FILES := \

@ -1 +1 @@
Subproject commit e7989c300280ba06d7621ae5b4e00ac7fe28d97a
Subproject commit 88a671e3091b8a02cdda136d4de0345524fd2387

View File

@ -38,7 +38,6 @@ set(ALL_SOURCE_FILES
# rhash
${SRC_DIR}/rhash/cdreader.c
${SRC_DIR}/rhash/hash.c
${SRC_DIR}/rhash/aes.c
${SRC_DIR}/rhash/md5.c
${SRC_DIR}/rhash/md5.h
)

View File

@ -57,7 +57,6 @@
<ClCompile Include="..\rcheevos\src\rc_client.c" />
<ClCompile Include="..\rcheevos\src\rc_compat.c" />
<ClCompile Include="..\rcheevos\src\rc_util.c" />
<ClCompile Include="..\rcheevos\src\rhash\aes.c" />
<ClCompile Include="..\rcheevos\src\rhash\cdreader.c" />
<ClCompile Include="..\rcheevos\src\rhash\hash.c" />
<ClCompile Include="..\rcheevos\src\rhash\md5.c" />

View File

@ -90,9 +90,6 @@
<ClCompile Include="..\rcheevos\src\rc_util.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rhash\aes.c">
<Filter>rhash</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\rcheevos\src\rapi\rc_api_common.h">

View File

@ -220,7 +220,6 @@ SOURCES_C += \
$(EXTDIR)/rcheevos/src/rcheevos/runtime_progress.c \
$(EXTDIR)/rcheevos/src/rcheevos/trigger.c \
$(EXTDIR)/rcheevos/src/rcheevos/value.c \
$(EXTDIR)/rcheevos/src/rhash/aes.c \
$(EXTDIR)/rcheevos/src/rhash/cdreader.c \
$(EXTDIR)/rcheevos/src/rhash/hash.c \
$(EXTDIR)/rcheevos/src/rhash/md5.c