Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes for Patch 2.13 #964

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Image.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ struct Image
{
void Initialize();

static std::tuple<uint32_t, uint16_t> GetSupportedVersion() noexcept { return std::make_tuple(2, 1201); }
static std::tuple<uint32_t, uint16_t> GetSupportedVersion() noexcept { return std::make_tuple(2, 13); }

uintptr_t base_address;
mem::region TextRegion;
Expand Down
4 changes: 2 additions & 2 deletions src/reverse/Addresses.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ constexpr uint32_t CPatches_OptionsInit = 4089777341UL; // Config::IConfigVar::R
#pragma endregion

#pragma region CPhotoMode
constexpr uint32_t CPhotoMode_SetRecordID = 4241565651UL;
constexpr uint32_t CPhotoMode_SetRecordID = 4052428712UL;
#pragma endregion

#pragma region CRenderGlobal
Expand Down Expand Up @@ -54,7 +54,7 @@ constexpr uint32_t CScript_LogChannelWarning = 2841780134UL;
constexpr uint32_t CScript_TDBIDConstructorDerive = 326438016UL;
constexpr uint32_t CScript_TranslateBytecode = 3442875632UL;
constexpr uint32_t CScript_TweakDBLoad = 3602585178UL;
constexpr uint32_t CScript_RegisterMemberFunction = 592450491UL;
constexpr uint32_t CScript_RegisterMemberFunction = 592450491UL; // Is this even used?
#pragma endregion

#pragma region CShutdownState
Expand Down
2 changes: 1 addition & 1 deletion vendor/RED4ext.SDK
Submodule RED4ext.SDK updated 45 files
+112 −6 CONTRIBUTING.md
+1 −0 include/RED4ext/Api/Runtime.hpp
+2 −1 include/RED4ext/Api/v0/Runtime.hpp
+1 −0 include/RED4ext/CString.hpp
+2 −1 include/RED4ext/DynArray.hpp
+3 −1 include/RED4ext/ISerializable-inl.hpp
+0 −2 include/RED4ext/ISerializable.hpp
+1 −1 include/RED4ext/JobQueue-inl.hpp
+23 −0 include/RED4ext/Scripting/Natives/Generated/FSR3CustomData.hpp
+9 −0 include/RED4ext/Scripting/Natives/Generated/Vector2.hpp
+9 −0 include/RED4ext/Scripting/Natives/Generated/Vector3.hpp
+9 −0 include/RED4ext/Scripting/Natives/Generated/Vector4.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/anim/AnimVariableBool.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/anim/AnimVariableFloat.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/anim/AnimVariableInt.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/anim/AnimVariableQuaternion.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/anim/AnimVariableTransform.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/anim/AnimVariableVector.hpp
+3 −2 include/RED4ext/Scripting/Natives/Generated/anim/Rig.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/ent/EntityTemplate.hpp
+11 −0 include/RED4ext/Scripting/Natives/Generated/ent/IPlacedComponent.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/ink/DrawArea.hpp
+1 −1 include/RED4ext/Scripting/Natives/Generated/quest/ICharacterConditionType.hpp
+2 −2 include/RED4ext/Scripting/Natives/Generated/services/GameServices.hpp
+2 −2 include/RED4ext/Scripting/Natives/Generated/services/GameServicesGalaxy.hpp
+2 −2 include/RED4ext/Scripting/Natives/Generated/services/GameServicesWin.hpp
+11 −0 include/RED4ext/Scripting/Natives/Generated/vehicle/BaseObject.hpp
+10 −0 include/RED4ext/Scripting/Natives/Generated/world/AnimationSystem.hpp
+11 −0 include/RED4ext/Scripting/Natives/Generated/world/AnimationSystemScriptInterface.hpp
+28 −22 include/RED4ext/Scripting/Natives/Generated/world/BenchmarkSummary.hpp
+103 −0 include/RED4ext/Scripting/Natives/Vector2.hpp
+108 −0 include/RED4ext/Scripting/Natives/Vector3.hpp
+116 −0 include/RED4ext/Scripting/Natives/Vector4.hpp
+2 −0 include/RED4ext/Scripting/Natives/WorldPosition.hpp
+0 −0 include/RED4ext/Scripting/Natives/animAnimBufferState.hpp
+1 −1 include/RED4ext/Scripting/Natives/animAnimSet.hpp
+29 −0 include/RED4ext/Scripting/Natives/animAnimatedObject.hpp
+2 −2 include/RED4ext/Scripting/Natives/animAnimationBufferCompressed.hpp
+2 −2 include/RED4ext/Scripting/Natives/animKeyFrames.hpp
+42 −0 include/RED4ext/Scripting/Natives/animMetaRig.hpp
+33 −0 include/RED4ext/Scripting/Natives/entIPlacedComponent.hpp
+48 −0 include/RED4ext/Scripting/Natives/vehicleBaseObject.hpp
+99 −0 include/RED4ext/Scripting/Natives/worldAnimationSystem.hpp
+24 −0 include/RED4ext/Scripting/Natives/worldAnimationSystemScriptInterface.hpp
+1 −0 include/RED4ext/SystemUpdate.hpp
Loading