Skip to content

Commit

Permalink
update to rcheevos 11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamiras committed Jun 17, 2024
1 parent 8ff8be8 commit dcab474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rcheevos
Submodule rcheevos updated 54 files
+19 −0 .github/workflows/c-cpp.yml
+35 −0 CHANGELOG.md
+6 −0 include/rc_api_editor.h
+45 −0 include/rc_api_info.h
+3 −0 include/rc_api_user.h
+44 −0 include/rc_client.h
+16 −1 include/rc_client_raintegration.h
+4 −1 include/rc_error.h
+7 −1 include/rc_runtime.h
+11 −2 include/rc_runtime_types.h
+69 −22 src/rapi/rc_api_common.c
+2 −0 src/rapi/rc_api_common.h
+90 −0 src/rapi/rc_api_info.c
+10 −15 src/rapi/rc_api_runtime.c
+271 −100 src/rc_client.c
+3 −2 src/rc_client_external.h
+6 −10 src/rc_client_internal.h
+62 −12 src/rc_client_raintegration.c
+9 −0 src/rc_client_raintegration_internal.h
+2 −1 src/rc_libretro.c
+3 −0 src/rc_util.c
+1 −1 src/rc_version.h
+31 −1 src/rcheevos/condition.c
+17 −0 src/rcheevos/condset.c
+77 −24 src/rcheevos/consoleinfo.c
+37 −0 src/rcheevos/memref.c
+57 −0 src/rcheevos/operand.c
+10 −6 src/rcheevos/rc_internal.h
+182 −48 src/rcheevos/rc_validate.c
+108 −24 src/rcheevos/runtime_progress.c
+92 −3 src/rcheevos/value.c
+95 −28 src/rhash/hash.c
+19 −11 test/Makefile
+85 −0 test/rapi/test_rc_api_common.c
+59 −0 test/rapi/test_rc_api_info.c
+108 −0 test/rapi/test_rc_api_runtime.c
+5 −5 test/rcheevos-test.vcxproj
+3 −1 test/rcheevos-test.vcxproj.filters
+3 −0 test/rcheevos/test_condition.c
+14 −0 test/rcheevos/test_condset.c
+6 −6 test/rcheevos/test_consoleinfo.c
+3 −0 test/rcheevos/test_format.c
+51 −0 test/rcheevos/test_memref.c
+56 −5 test/rcheevos/test_rc_validate.c
+103 −0 test/rcheevos/test_runtime_progress.c
+172 −0 test/rcheevos/test_trigger.c
+113 −0 test/rcheevos/test_value.c
+46 −2 test/rhash/test_hash.c
+4 −1 test/test.c
+515 −26 test/test_rc_client.c
+44 −2 test/test_rc_client_external.c
+50 −0 test/test_rc_client_raintegration.c
+34 −15 test/test_rc_libretro.c
+5 −0 validator/validator.c

0 comments on commit dcab474

Please sign in to comment.