diff options
| author | coco875 <59367621+coco875@users.noreply.github.com> | 2025-05-23 22:49:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-23 16:49:06 -0600 |
| commit | 9363e3d77631b1028a765c075a00293bd20c9ba7 (patch) | |
| tree | ab10b69b18b3ecd2eab6d871340d296d0957f6d0 /src/engine/editor/EditorMath.cpp | |
| parent | af4535c3c578425a456c8c34c42f10108f94fd1c (diff) | |
fix memory leaks, avoid invalidate texture (#207)
* Fixed macos
* More stupid fixes
* update with main and update torch and lus and enable action on this branch
* Update FrameInterpolation.h
* Update FrameInterpolation.cpp
* fix some memory leak
* Update torch
* Update torch
* update torch and lus
* reduce texture import
* don't use fork of torch and lus
* Update torch
* Update torch
---------
Co-authored-by: Lywx <kiritodev01@gmail.com>
Diffstat (limited to 'src/engine/editor/EditorMath.cpp')
| -rw-r--r-- | src/engine/editor/EditorMath.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/editor/EditorMath.cpp b/src/engine/editor/EditorMath.cpp index 04a299563..f3833008b 100644 --- a/src/engine/editor/EditorMath.cpp +++ b/src/engine/editor/EditorMath.cpp @@ -352,8 +352,8 @@ bool IntersectRaySphere(const Ray& ray, const FVector& sphereCenter, float radiu // Transform a matrix to a matrix identity void Editor_MatrixIdentity(Mat4 mtx) { - register s32 i; - register s32 k; + s32 i; + s32 k; for (i = 0; i < 4; i++) { for (k = 0; k < 4; k++) { |
