Skip to content

Commit

Permalink
emulators/rpcs3: update to 0.0.31.16295
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeich committed Apr 6, 2024
1 parent 8f90d72 commit 23db575
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions emulators/rpcs3/Makefile
@@ -1,7 +1,7 @@
PORTNAME= rpcs3
DISTVERSIONPREFIX= v
DISTVERSION= 0.0.31-16282 # git rev-list --count HEAD
DISTVERSIONSUFFIX= -g2a89d87fab
DISTVERSION= 0.0.31-16295 # git rev-list --count HEAD
DISTVERSIONSUFFIX= -g517f0e1bac
CATEGORIES= emulators wayland

MAINTAINER= jbeich@FreeBSD.org
Expand All @@ -26,7 +26,7 @@ ONLY_FOR_ARCHS_REASON= requires int128 and SSE2
USE_GITHUB= yes
GH_ACCOUNT= RPCS3
GH_TUPLE= RPCS3:hidapi:hidapi-0.14.0-2-g8b43a97:hidapi/3rdparty/hidapi/hidapi \
RPCS3:soundtouch:2.3.1-30-gced3ce8:soundtouch/3rdparty/SoundTouch/soundtouch \
RPCS3:soundtouch:2.3.1-68-g394e1f5:soundtouch/3rdparty/SoundTouch/soundtouch \
asmjit:asmjit:416f735:asmjit/3rdparty/asmjit/asmjit \
jbeder:yaml-cpp:0.8.0-11-g456c68f:yamlcpp/3rdparty/yaml-cpp/yaml-cpp \
KhronosGroup:SPIRV-Headers:1.5.4.raytracing.fixed-323-ge867c06:spirv_headers/3rdparty/SPIRV/SPIRV-Headers \
Expand Down
10 changes: 5 additions & 5 deletions emulators/rpcs3/distinfo
@@ -1,10 +1,10 @@
TIMESTAMP = 1712145819
SHA256 (RPCS3-rpcs3-v0.0.31-16282-g2a89d87fab_GH0.tar.gz) = 15a5872f38d7e2e25af4216a1d23638a418b7a532a0a6262edc01e9c1577f7fa
SIZE (RPCS3-rpcs3-v0.0.31-16282-g2a89d87fab_GH0.tar.gz) = 8632247
TIMESTAMP = 1712360828
SHA256 (RPCS3-rpcs3-v0.0.31-16295-g517f0e1bac_GH0.tar.gz) = 967e57c7ff98aa28d7c400815d64b659fb66ee7bc26e7646ffb2abae9ba00706
SIZE (RPCS3-rpcs3-v0.0.31-16295-g517f0e1bac_GH0.tar.gz) = 8633268
SHA256 (RPCS3-hidapi-hidapi-0.14.0-2-g8b43a97_GH0.tar.gz) = 109ba77362885d60e274930f637735ee75df2850fe99e3f1c3a5b9d1187f8cb6
SIZE (RPCS3-hidapi-hidapi-0.14.0-2-g8b43a97_GH0.tar.gz) = 348879
SHA256 (RPCS3-soundtouch-2.3.1-30-gced3ce8_GH0.tar.gz) = a041a2a857f52f7f0e4e5a8e774b702cd59f10fe9f39cfb87f5a6a2b4bc58d55
SIZE (RPCS3-soundtouch-2.3.1-30-gced3ce8_GH0.tar.gz) = 582437
SHA256 (RPCS3-soundtouch-2.3.1-68-g394e1f5_GH0.tar.gz) = e24af82c51547341e2dfd43af03c1847abfd8d27334d667e6a51943f7f505cbe
SIZE (RPCS3-soundtouch-2.3.1-68-g394e1f5_GH0.tar.gz) = 606828
SHA256 (asmjit-asmjit-416f735_GH0.tar.gz) = 65ba9c3487da09af02db0c34405d1bdd3e49e134062930777f272007d97940fd
SIZE (asmjit-asmjit-416f735_GH0.tar.gz) = 1151444
SHA256 (jbeder-yaml-cpp-0.8.0-11-g456c68f_GH0.tar.gz) = 3793d936474b1e6366f934f128f168dae711fd5e248dac048226c7879cefd6a3
Expand Down
20 changes: 10 additions & 10 deletions emulators/rpcs3/files/patch-soundtouch
Expand Up @@ -12,14 +12,14 @@ In file included from 3rdparty/SoundTouch/soundtouch/include/SoundTouch.h:68:
#define assert(e) ((e) ? (void)0 : __assert(__func__, __FILE__, \
^

--- 3rdparty/SoundTouch/soundtouch/include/STTypes.h.orig 2022-01-22 12:50:46 UTC
--- 3rdparty/SoundTouch/soundtouch/include/STTypes.h.orig 2024-04-04 20:36:27 UTC
+++ 3rdparty/SoundTouch/soundtouch/include/STTypes.h
@@ -125,7 +125,7 @@ namespace soundtouch
#ifdef ST_NO_EXCEPTION_HANDLING
// Exceptions disabled. Throw asserts instead if enabled.
#include <assert.h>
- #define ST_THROW_RT_ERROR(x) {assert((const char *)x);}
+ #define ST_THROW_RT_ERROR(x) {assert(static_cast<const char *>(x));}
#else
// use c++ standard exceptions
#include <stdexcept>
@@ -125,7 +125,7 @@ namespace soundtouch
#ifdef ST_NO_EXCEPTION_HANDLING
// Exceptions disabled. Throw asserts instead if enabled.
#include <assert.h>
- #define ST_THROW_RT_ERROR(x) {assert((const char *)x);}
+ #define ST_THROW_RT_ERROR(x) {assert(static_cast<const char *>(x));}
#else
// use c++ standard exceptions
#include <stdexcept>

0 comments on commit 23db575

Please sign in to comment.