[Scummvm-git-logs] scummvm master -> e4401d497b8ee48967429672108e010332165170
mgerhardy
noreply at scummvm.org
Sat Jan 21 09:13:10 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
e4401d497b TWINE: hopefully fixed msvc compilation
Commit: e4401d497b8ee48967429672108e010332165170
https://github.com/scummvm/scummvm/commit/e4401d497b8ee48967429672108e010332165170
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2023-01-21T10:12:59+01:00
Commit Message:
TWINE: hopefully fixed msvc compilation
Changed paths:
engines/twine/renderer/renderer.cpp
diff --git a/engines/twine/renderer/renderer.cpp b/engines/twine/renderer/renderer.cpp
index 4e4ff9757dd..5a6a27551f0 100644
--- a/engines/twine/renderer/renderer.cpp
+++ b/engines/twine/renderer/renderer.cpp
@@ -734,9 +734,9 @@ bool Renderer::computePoly(int16 polyRenderType, const ComputedVertex *vertices,
ComputedVertex *pTabPoly = offTabPoly[0];
ComputedVertex *p0;
ComputedVertex *p1;
- int16 *pVertic;
+ int16 *pVertic = nullptr;
int16 *pCoul;
- int32 incY;
+ int32 incY = -1;
int32 dx, dy, x, y, dc;
int32 step, reminder;
More information about the Scummvm-git-logs
mailing list