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

gzdoom: 4.14.0 -> 4.14.1 (#386525)

parents 1a142a02 e206e510
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -25,18 +25,16 @@

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

  src = fetchFromGitHub {
    owner = "ZDoom";
    repo = "gzdoom";
    rev = "g${version}";
    fetchSubmodules = true;
    hash = "sha256-+gLWt1qBKl8xGK6sALnjqPuXcBexjWKbEkbRMFtLcbE=";
    hash = "sha256-Hrqi2xpyMGcTJ2rI59EpcEtoJ+gCGmwEy+F396M3f/4=";
  };

  patches = [ ./string_format.patch ];

  outputs = [ "out" ] ++ lib.optionals stdenv.hostPlatform.isLinux [ "doc" ];

  nativeBuildInputs = [
+0 −13
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.