Unverified Commit e9b79cc3 authored by Zane van Iperen's avatar Zane van Iperen
Browse files

rpcs3: 0.0.29-15726-ebf48800e -> 0.0.31-16271-4ecf8ecd0

Also fix the update script.
parent 7d55d624
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -32,10 +32,10 @@

let
  # Keep these separate so the update script can regex them
  rpcs3GitVersion = "15726-ebf48800e";
  rpcs3Version = "0.0.29-15726-ebf48800e";
  rpcs3Revision = "ebf48800e6bf2569fa0a59974ab2daaeb3a92f23";
  rpcs3Hash = "sha256-HJQ+DCZy8lwMCfq0N9StKD8bP1hCBxGMAucbQ9esy/I=";
  rpcs3GitVersion = "16271-4ecf8ecd0";
  rpcs3Version = "0.0.31-16271-4ecf8ecd0";
  rpcs3Revision = "4ecf8ecd06c15f0557e1d9243f31e4c2d7baebe2";
  rpcs3Hash = "sha256-y7XLYo1qYYiNE4TXVxfUTCmyGkthpj3IU1gdKTgb8KY=";

  inherit (qt6Packages) qtbase qtmultimedia wrapQtAppsHook qtwayland;
in
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
set -eou pipefail

ROOT="$(dirname "$(readlink -f "$0")")"
if [[ ! "$(basename $ROOT)" == "rpcs3" || ! -f "$ROOT/default.nix" ]]; then
if [[ ! "$(basename $ROOT)" == "rpcs3" || ! -f "$ROOT/package.nix" ]]; then
    echo "ERROR: Not in the rpcs3 folder"
    exit 1
fi