[Scummvm-git-logs] scummvm master -> 97a55df1153c113446f00d8fb6582ee075feb098
mgerhardy
martin.gerhardy at gmail.com
Wed Dec 23 14:53:14 UTC 2020
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:
97a55df115 TWINE: fixed polytab size
Commit: 97a55df1153c113446f00d8fb6582ee075feb098
https://github.com/scummvm/scummvm/commit/97a55df1153c113446f00d8fb6582ee075feb098
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2020-12-23T15:52:46+01:00
Commit Message:
TWINE: fixed polytab size
Changed paths:
engines/twine/renderer/renderer.h
diff --git a/engines/twine/renderer/renderer.h b/engines/twine/renderer/renderer.h
index 60f0ef4bc7..a0a5566b8b 100644
--- a/engines/twine/renderer/renderer.h
+++ b/engines/twine/renderer/renderer.h
@@ -39,7 +39,7 @@
#define POLYGONTYPE_GOURAUD 7
#define POLYGONTYPE_DITHER 8
-#define POLYTABSIZE (SCREEN_HEIGHT + (SCREEN_HEIGHT / 2))
+#define POLYTABSIZE (SCREEN_HEIGHT * 2)
namespace Common {
class MemoryReadStream;
More information about the Scummvm-git-logs
mailing list