Skip to content

Commit

Permalink
Merge pull request #89 from ryobg/devel
Browse files Browse the repository at this point in the history
#88 Initial support for SKSE 2.1.5 / Skyrim SE 1.6.353
  • Loading branch information
ryobg authored Jan 8, 2022
2 parents f38a831 + fcfd5e7 commit d269683
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
image: Visual Studio 2019
version: '4.2.1.{build}'
version: '4.2.2.{build}'
platform: x64
branches:
only:
Expand Down
Binary file modified dep/skse64/skse64.7z
Binary file not shown.
2 changes: 1 addition & 1 deletion src/JContainers/src/jcontainers_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace collections {

# define JC_API_VERSION 4
# define JC_FEATURE_VERSION 2
# define JC_PATCH_VERSION 1
# define JC_PATCH_VERSION 2

# define JC_FILE_VERSION JC_API_VERSION, JC_FEATURE_VERSION, JC_PATCH_VERSION, 0

Expand Down
6 changes: 3 additions & 3 deletions src/JContainers/src/skse/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ namespace skse {
DEFINE_MEMBER_FN(Set, string_ref *, 0x00C6DC90, const char * buf);
DEFINE_MEMBER_FN(Release, void, 0x00C6DC70);
#else
DEFINE_MEMBER_FN(ctor, string_ref *, 0x00C4F850, const char * buf);
DEFINE_MEMBER_FN(Set, string_ref *, 0x00C4F9E0, const char * buf);
DEFINE_MEMBER_FN(Release, void, 0x00C50C20);
DEFINE_MEMBER_FN(ctor, string_ref *, 0x00C4F780, const char * buf);
DEFINE_MEMBER_FN(Set, string_ref *, 0x00C4F910, const char * buf);
DEFINE_MEMBER_FN(Release, void, 0x00C50B50);
#endif

public:
Expand Down

0 comments on commit d269683

Please sign in to comment.