Unverified Commit 617fb0e3 authored by Azat Bahawi's avatar Azat Bahawi Committed by GitHub
Browse files

gzdoom: 4.13.2 -> 4.14.0 (#368993)

parents 87add4c7 af5356b7
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -28,16 +28,18 @@

stdenv.mkDerivation rec {
  pname = "gzdoom";
  version = "4.13.2";
  version = "4.14.0";

  src = fetchFromGitHub {
    owner = "ZDoom";
    repo = "gzdoom";
    rev = "g${version}";
    fetchSubmodules = true;
    hash = "sha256-3nkdpJ3XO58YHtjVTwxdSdCL6CnMcih6mTnI7FXLm34=";
    hash = "sha256-+gLWt1qBKl8xGK6sALnjqPuXcBexjWKbEkbRMFtLcbE=";
  };

  patches = [ ./string_format.patch ];

  outputs = [
    "out"
    "doc"
+13 −0
Original line number Diff line number Diff line
diff --git a/src/common/engine/i_net.cpp b/src/common/engine/i_net.cpp
index ad106bbc4..0a67062a0 100644
--- a/src/common/engine/i_net.cpp
+++ b/src/common/engine/i_net.cpp
@@ -1072,7 +1072,7 @@ void I_NetError(const char* error)
 {
 	doomcom.numnodes = 0;
 	StartWindow->NetClose();
-	I_FatalError(error);
+	I_FatalError("%s", error);
 }
 
 // todo: later these must be dispatched by the main menu, not the start screen.