Skip to content

Commit

Permalink
Release Nugget Doom 4.0.0
Browse files Browse the repository at this point in the history
Removed temporary support for "Nugget 3.4.0" saves.
  • Loading branch information
MrAlaux committed Dec 14, 2024
1 parent 4a6fe77 commit 0126922
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ set(X_VCPKG_APPLOCAL_DEPS_INSTALL ON)
cmake_minimum_required(VERSION 3.15)

project("Nugget Doom"
VERSION 3.3.0
DESCRIPTION "Nugget Doom 3.3.0"
VERSION 4.0.0
DESCRIPTION "Nugget Doom 4.0.0"
HOMEPAGE_URL "https://github.com/MrAlaux/Nugget-Doom"
LANGUAGES C)

Expand Down
1 change: 0 additions & 1 deletion src/g_game.c
Original file line number Diff line number Diff line change
Expand Up @@ -3091,7 +3091,6 @@ static boolean DoLoadGame(boolean do_load_autosave)
CheckSaveVersion("Nugget 2.4.0", saveg_nugget300);
CheckSaveVersion("Nugget 3.2.0", saveg_nugget320);
CheckSaveVersion("Nugget 3.3.0", saveg_nugget330);
CheckSaveVersion("Nugget 3.4.0", saveg_current); // TO BE REMOVED
CheckSaveVersion(CURRENT_SAVE_VERSION, saveg_current);

// killough 2/22/98: Friendly savegame version difference message
Expand Down
1 change: 0 additions & 1 deletion src/p_saveg.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ typedef enum saveg_compat_e
saveg_nugget300, // Identified by "Nugget 2.4.0"
saveg_nugget320,
saveg_nugget330,
saveg_nugget340, // TO BE REMOVED
saveg_current, // saveg_nugget400
} saveg_compat_t;

Expand Down

0 comments on commit 0126922

Please sign in to comment.