Skip to content

Commit

Permalink
Update other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Jan 2, 2025
1 parent 16c1bec commit 6500e20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vendor/libretro-common
Submodule libretro-common updated 99 files
+17 −9 audio/dsp_filter.c
+1 −1 audio/dsp_filters/eq.c
+9 −7 audio/dsp_filters/reverb.c
+1 −1 audio/dsp_filters/vibrato.c
+107 −130 cdrom/cdrom.c
+24 −7 dynamic/dylib.c
+43 −2 encodings/encoding_crc32.c
+34 −34 encodings/encoding_utf.c
+52 −96 features/features_cpu.c
+5 −6 file/archive_file.c
+17 −14 file/archive_file_7z.c
+12 −11 file/archive_file_zlib.c
+54 −58 file/config_file.c
+462 −429 file/file_path.c
+5 −5 formats/jpeg/rjpeg.c
+3 −3 formats/json/rjson.c
+1 −1 formats/libchdr/libchdr_cdrom.c
+1 −1 formats/libchdr/libchdr_chd.c
+1 −2 formats/libchdr/libchdr_huffman.c
+7 −6 formats/logiqx_dat/logiqx_dat.c
+27 −41 formats/m3u/m3u_file.c
+3 −3 include/array/rbuf.h
+26 −2 include/array/rhmap.h
+15 −9 include/audio/conversion/float_to_s16.h
+17 −10 include/audio/conversion/s16_to_float.h
+2 −2 include/cdrom/cdrom.h
+8 −11 include/clamping.h
+5 −0 include/compat/fnmatch.h
+11 −3 include/compat/getopt.h
+13 −0 include/compat/ifaddrs.h
+14 −2 include/compat/intrinsics.h
+35 −2 include/compat/posix_string.h
+8 −0 include/compat/strcasestr.h
+27 −0 include/compat/strl.h
+3 −3 include/compat/zlib/zlib.h
+3 −1 include/defines/psp_defines.h
+56 −7 include/dynamic/dylib.h
+22 −0 include/encodings/base64.h
+8 −0 include/encodings/crc32.h
+38 −18 include/features/features_cpu.h
+11 −6 include/file/config_file.h
+42 −33 include/file/file_path.h
+3 −3 include/formats/logiqx_dat.h
+2 −2 include/formats/rjson.h
+3 −3 include/glsym/switch/nx_gl.h
+1 −1 include/glsym/switch/nx_glsym.h
+5,492 −2,064 include/libretro.h
+4 −4 include/libretro_vulkan.h
+3 −3 include/lists/linked_list.h
+22 −6 include/lists/string_list.h
+4 −0 include/net/net_compat.h
+95 −0 include/queues/fifo_queue.h
+504 −80 include/queues/task_queue.h
+6 −6 include/retro_common.h
+1 −1 include/retro_common_api.h
+108 −16 include/retro_dirent.h
+276 −261 include/retro_endianness.h
+6 −0 include/retro_inline.h
+307 −4 include/retro_miscellaneous.h
+2 −3 include/retro_timers.h
+165 −126 include/rthreads/rthreads.h
+13 −13 include/rthreads/tpool.h
+298 −26 include/streams/file_stream.h
+27 −0 include/streams/file_stream_transforms.h
+3 −0 include/streams/interface_stream.h
+255 −126 include/streams/network_stream.h
+11 −0 include/streams/stdin_stream.h
+4 −7 include/string/stdstring.h
+18 −3 include/time/rtime.h
+228 −1 libco/ppc.c
+1 −1 libco/x86.c
+12 −4 lists/dir_list.c
+17 −14 lists/file_list.c
+4 −3 lists/nested_list.c
+52 −21 lists/string_list.c
+3 −2 media/media_detect_cd.c
+2 −2 memmap/memmap.c
+3 −3 net/net_compat.c
+14 −17 net/net_http.c
+6 −1 net/net_socket_ssl_mbed.c
+4 −2 playlists/label_sanitization.c
+195 −75 queues/task_queue.c
+4 −2 rthreads/ctr_pthread.h
+1 −1 rthreads/psp_pthread.h
+8 −138 rthreads/rthreads.c
+1 −1 samples/core_options/example_categories/conversion_scripts/v1_to_v2_converter.py
+1 −1 samples/core_options/example_translation/translation scripts/intl/v1_to_v2_converter.py
+1 −1 samples/streams/rzip/Makefile
+1 −1 samples/streams/rzip/rzip.c
+13 −43 streams/file_stream.c
+20 −0 streams/interface_stream.c
+2 −0 streams/network_stream.c
+25 −17 streams/trans_stream_zlib.c
+11 −22 string/stdstring.c
+3 −1 test/string/test_stdstring.c
+10 −17 utils/md5.c
+1 −3 utils/sha1.c
+29 −17 vfs/vfs_implementation.c
+15 −15 vfs/vfs_implementation_uwp.cpp

0 comments on commit 6500e20

Please sign in to comment.