Update rcheevos yet again

This commit is contained in:
Henrik Rydgård 2024-01-18 00:15:22 +01:00
parent 8b5f9328fb
commit 9555563ad2
8 changed files with 19 additions and 6 deletions

View file

@ -72,6 +72,7 @@
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\runtime_progress.c" /> <ClCompile Include="..\..\ext\rcheevos\src\rcheevos\runtime_progress.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\trigger.c" /> <ClCompile Include="..\..\ext\rcheevos\src\rcheevos\trigger.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\value.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\cdreader.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\hash.c" /> <ClCompile Include="..\..\ext\rcheevos\src\rhash\hash.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\md5.c" /> <ClCompile Include="..\..\ext\rcheevos\src\rhash\md5.c" />
@ -100,8 +101,10 @@
<WholeProgramOptimization>false</WholeProgramOptimization> <WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings"></ImportGroup> <ImportGroup Label="ExtensionSettings">
<ImportGroup Label="Shared"></ImportGroup> </ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets"> <ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup> </ImportGroup>
@ -126,4 +129,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">
</ImportGroup> </ImportGroup>
</Project> </Project>

View file

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

View file

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

@ -1 +1 @@
Subproject commit 6fb3ebca22fe4f3a97e7a391e5e9c4623aa2286a Subproject commit e7989c300280ba06d7621ae5b4e00ac7fe28d97a

View file

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

View file

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

View file

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

View file

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