Skip to content

Commit

Permalink
Merge pull request #4 from stoozey/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
stoozey authored Jul 30, 2023
2 parents 16bef94 + c7d9a7a commit 8338052
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/__scr_ssave_macros/__scr_ssave_macros.gml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ enum SSAVE_PROTECTION
}

#macro __SSAVE_FILE_EXTENSION "ssave"
#macro __SSAVE_VERSION "1.3.2"
#macro __SSAVE_VERSION "1.3.3"
1 change: 1 addition & 0 deletions scripts/scr_ssave/scr_ssave.gml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ function SSave(_name = "data", _protection = SSAVE_PROTECTION_DEFAULT) construct
switch (_header.get_version())
{
default:
case "1.3.3":
case "1.3.2":
case "1.3.1":
case "1.3.0":
Expand Down
2 changes: 1 addition & 1 deletion scripts/scr_ssave_manager/scr_ssave_manager.gml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ function SSaveManager() constructor

static __deregister_by_index = function(_index, _ssaveConstructor)
{
var _ssaves = __get_ssaves(_ssaveConstructor, _ssaveConstructor);
var _ssaves = __get_ssaves(_ssaveConstructor);
if ((_index < 0) || (_index >= ds_list_size(_ssaves))) return;

var _ssave = _ssaves[| _index];
Expand Down

0 comments on commit 8338052

Please sign in to comment.